...try in ~/.postgresqlrc (see postgresqlrc (5)), if that file exists matching entry in /etc/postgresql-common/user_clusters (see user_clusters (5)), if that file exists If only on…compute a set of rows NAME VALUES - compute a set of rows SYNOPSIS VALUES ( expression [, ...] ) [, ...] [ ORDER BY sort_expression [ ASC | DESC | USING operator ] [, ...] ] [ LIMI…define a new domain NAME CREATE_DOMAIN - define a new domain SYNOPSIS CREATE DOMAIN name [ AS ] data_type [ COLLATE collation ] [ DEFAULT expression ] [ domain_constraint [ ... ] ]…define extended statistics NAME CREATE_STATISTICS - define extended statistics SYNOPSIS CREATE STATISTICS [ [ IF NOT EXISTS ] statistics_name ] ON ( expression ) FROM table_name CR…collect statistics about a database NAME ANALYZE - collect statistics about a database SYNOPSIS ANALYZE [ ( option [, ...] ) ] [ table_and_columns [, ...] ] where option can be one…generate a notification NAME NOTIFY - generate a notification SYNOPSIS NOTIFY channel [ , payload ] DESCRIPTION The NOTIFY command sends a notification event together with an optio…copy data between a file and a table NAME COPY - copy data between a file and a table SYNOPSIS COPY table_name [ ( column_name [, ...] ) ] FROM { ' filename ' | PROGRAM ' command '…change a server configuration parameter NAME ALTER_SYSTEM - change a server configuration parameter SYNOPSIS ALTER SYSTEM SET configuration_parameter { TO | = } { value [, ...] | D…define a new trigger NAME CREATE_TRIGGER - define a new trigger SYNOPSIS CREATE [ OR REPLACE ] [ CONSTRAINT ] TRIGGER name { BEFORE | AFTER | INSTEAD OF } { event [ OR ... ] } ON t…define a new cast NAME CREATE_CAST - define a new cast SYNOPSIS CREATE CAST ( source_type AS target_type ) WITH FUNCTION function_name [ ( argument_type [, ...]) ] [ AS ASSIGNMENT …retrieve rows from a table or view NAME SELECT, TABLE, WITH - retrieve rows from a table or view SYNOPSIS [ WITH [ RECURSIVE ] with_query [, ...] ] SELECT [ ALL | DISTINCT [ ON ( e…update rows of a table NAME UPDATE - update rows of a table SYNOPSIS [ WITH [ RECURSIVE ] with_query [, ...] ] UPDATE [ ONLY ] table_name [ * ] [ [ AS ] alias ] SET { column_name =…define a cursor NAME DECLARE - define a cursor SYNOPSIS DECLARE name [ BINARY ] [ ASENSITIVE | INSENSITIVE ] [ [ NO ] SCROLL ] CURSOR [ { WITH | WITHOUT } HOLD ] FOR query DESCRIPT…start a transaction block NAME START_TRANSACTION - start a transaction block SYNOPSIS START TRANSACTION [ transaction_mode [, ...] ] where transaction_mode is one of: ISOLATION LEV…define a new procedural language NAME CREATE_LANGUAGE - define a new procedural language SYNOPSIS CREATE [ OR REPLACE ] [ TRUSTED ] [ PROCEDURAL ] LANGUAGE name HANDLER call_handle…define a new database role NAME CREATE_ROLE - define a new database role SYNOPSIS CREATE ROLE name [ [ WITH ] option [ ... ] ] where option can be: SUPERUSER | NOSUPERUSER | CREATE…start a transaction block NAME BEGIN - start a transaction block SYNOPSIS BEGIN [ WORK | TRANSACTION ] [ transaction_mode [, ...] ] where transaction_mode is one of: ISOLATION LEVE…set the session user identifier and the current user identifier of the current session NAME SET_SESSION_AUTHORIZATION - set the session user identifier and the current user identif…define a new table from the results of a query NAME CREATE_TABLE_AS - define a new table from the results of a query SYNOPSIS CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNL…define a new schema NAME CREATE_SCHEMA - define a new schema SYNOPSIS CREATE SCHEMA schema_name [ AUTHORIZATION role_specification ] [ schema_element [ ... ] ] CREATE SCHEMA AUTHOR…