egdb3_11_7
.authority
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
extract_headings(rid bigint, restrict integer[] DEFAULT NULL::integer[])
Parameters
Name
Type
Mode
rid
bigint
IN
restrict
integer[]
IN
Definition
DECLARE auth authority.record_entry%ROWTYPE; output_row authority.heading; BEGIN -- Get the record SELECT INTO auth * FROM authority.record_entry WHERE id = rid; RETURN QUERY SELECT * FROM authority.extract_headings(auth.marc, restrict); END;