PostgreSQL
dblink_get_pkey
dblink_get_pkey — returns the positions and field names of a relation’s primary key fields
Description
dblink_get_pkey
provides information about the primary key of a relation in the local database. This is sometimes useful in generating queries to be sent to remote databases.
Arguments
- `relname`
-
Name of a local relation, for example
foo
ormyschema.mytab
. Include double quotes if the name is mixed-case or contains special characters, for example"FooBar"
; without quotes, the string will be folded to lower case.
Return Value
Returns one row for each primary key field, or no rows if the relation has no primary key. The result row type is defined as
CREATE TYPE dblink_pkey_results AS (position int, colname text);
The position
column simply runs from 1 to `N`; it is the number of the field within the primary key, not the number within the table’s columns.
Submit correction
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.
Copyright © 1996-2023 The PostgreSQL Global Development Group