config.bib_level_map (view)

This is a database view, not a base table. It has no triggers, indexes, or FK constraints of its own. Querying this view may be more efficient than joining the underlying tables directly.

Columns

Column Type Nullable Notes

code

text

Yes

value

text

Yes

View Definition

 SELECT coded_value_map.code,
    coded_value_map.value
   FROM config.coded_value_map
  WHERE coded_value_map.ctype = 'bib_level'::text;