Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

constantobject type
0bitstream
1bundle
2item
3collection
4community
5site
6group
7eperson

 

 

Code Block
languagesql
titleSo for example, a search to list all publication titles would be:
SELECT text_value FROM metadatavalue
WHERE metadata_field_id = (
  SELECT metadata_field_id
  FROM metadatafieldregistry mfr, metadataschemaregistry msr
  WHERE mfr.metadata_schema_id = msr.metadata_schema_id
  AND short_id = 'dc'
  AND element = 'title'
  AND qualifier IS NULL
)
AND resource_type_id=2;

 

Example change

Example eperson table in DSpace 4 (simplified to show only relevant parts):

...