dblink_get_pkey man page on Alpinelinux

Man page or keyword search:  
man Server   18016 pages
apropos Keyword Search (all sections)
Output format
Alpinelinux logo
[printable version]

DBLINK_GET_PKEY(3)	PostgreSQL 9.3.4 Documentation	    DBLINK_GET_PKEY(3)

NAME
       dblink_get_pkey - returns the positions and field names of a relation's
       primary key fields

SYNOPSIS
       dblink_get_pkey(text relname) returns setof dblink_pkey_results

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 or myschema.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.

EXAMPLES
	   CREATE TABLE foobar (
	       f1 int,
	       f2 int,
	       f3 int,
	       PRIMARY KEY (f1, f2, f3)
	   );
	   CREATE TABLE

	   SELECT * FROM dblink_get_pkey('foobar');
	    position | colname
	   ----------+---------
		   1 | f1
		   2 | f2
		   3 | f3
	   (3 rows)

PostgreSQL 9.3.4		     2014		    DBLINK_GET_PKEY(3)
[top]

List of man pages available for Alpinelinux

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net