diff --git a/content/2016-05.md b/content/2016-05.md index 29c4e2f2a..d91e633fa 100644 --- a/content/2016-05.md +++ b/content/2016-05.md @@ -156,4 +156,9 @@ value.replace('_','').replace('-','') - And `dc.identifier.fund` is MOSTLY used for CPWF project identifier but has some other sponsorship things - We should move PN*, SG*, CBA, IA, and PHASE* values to `cg.identifier.cpwfproject` - The rest, like BMGF and USAID etc, might have to go to either `dc.description.sponsorship` or `cg.identifier.fund` (not sure yet) - - There are also some mistakes in CPWF's things, like "PN 47" \ No newline at end of file + - There are also some mistakes in CPWF's things, like "PN 47" + - This ought to catch all the CPWF values (there don't appear to be and SG* values): + +``` +# select text_value from metadatavalue where resource_type_id=2 and metadata_field_id=75 and (text_value like 'PN%' or text_value like 'PHASE%' or text_value = 'CBA' or text_value = 'IA'); +``` diff --git a/public/2016-05/index.html b/public/2016-05/index.html index f7633ac87..e698b4b28 100644 --- a/public/2016-05/index.html +++ b/public/2016-05/index.html @@ -271,9 +271,13 @@ fi
  • We should move PN, SG, CBA, IA, and PHASE* values to cg.identifier.cpwfproject
  • The rest, like BMGF and USAID etc, might have to go to either dc.description.sponsorship or cg.identifier.fund (not sure yet)
  • There are also some mistakes in CPWF’s things, like “PN 47”
  • +
  • This ought to catch all the CPWF values (there don’t appear to be and SG* values):
  • +
    # select text_value from metadatavalue where resource_type_id=2 and metadata_field_id=75 and (text_value like 'PN%' or text_value like 'PHASE%' or text_value = 'CBA' or text_value = 'IA');
    +
    +