compute a set of rows NAME VALUES - compute a set of rows SYNOPSIS VALUES ( expression [, ...] ) [, ...] [ ORDER BY sort_expression [ ASC | DESC | USING operator ] [, ...] ] [ LIMI…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…define a new table NAME CREATE_TABLE - define a new table SYNOPSIS CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXISTS ] table_name ( [ { column_nam…create new rows in a table NAME INSERT - create new rows in a table SYNOPSIS [ WITH [ RECURSIVE ] with_query [, ...] ] INSERT INTO table_name [ AS alias ] [ ( column_name [, ...] )…define a new foreign table NAME CREATE_FOREIGN_TABLE - define a new foreign table SYNOPSIS CREATE FOREIGN TABLE [ IF NOT EXISTS ] table_name ( [ { column_name data_type [ OPTIONS (…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 =…change the definition of a table NAME ALTER_TABLE - change the definition of a table SYNOPSIS ALTER TABLE [ IF EXISTS ] [ ONLY ] name [ * ] action [, ... ] ALTER TABLE [ IF EXISTS …collect statistics about a database NAME ANALYZE - collect statistics about a database SYNOPSIS ANALYZE [ ( option [, ...] ) ] [ table_and_columns [, ...] ] where option can be one…conditionally insert, update, or delete rows of a table NAME MERGE - conditionally insert, update, or delete rows of a table SYNOPSIS [ WITH with_query [, ...] ] MERGE INTO [ ONLY …change the definition of a foreign table NAME ALTER_FOREIGN_TABLE - change the definition of a foreign table SYNOPSIS ALTER FOREIGN TABLE [ IF EXISTS ] [ ONLY ] name [ * ] action […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 '…define a new publication NAME CREATE_PUBLICATION - define a new publication SYNOPSIS CREATE PUBLICATION name [ FOR ALL TABLES | FOR publication_object [, ... ] ] [ WITH ( publicati…define extended statistics NAME CREATE_STATISTICS - define extended statistics SYNOPSIS CREATE STATISTICS [ [ IF NOT EXISTS ] statistics_name ] ON ( expression ) FROM table_name CR…define a new view NAME CREATE_VIEW - define a new view SYNOPSIS CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] [ RECURSIVE ] VIEW name [ ( column_name [, ...] ) ] [ WITH ( view_option_…define a new index NAME CREATE_INDEX - define a new index SYNOPSIS CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] name ] ON [ ONLY ] table_name [ USING method ] ( { c…A Git core tutorial for developers NAME gitcore-tutorial - A Git core tutorial for developers SYNOPSIS git * DESCRIPTION This tutorial explains how to use the "core" Git commands t…change the definition of a publication NAME ALTER_PUBLICATION - change the definition of a publication SYNOPSIS ALTER PUBLICATION name ADD publication_object [, ...] ALTER PUBLICAT…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…tbl language reference for mandoc NAME tbl — tbl language reference for mandoc DESCRIPTION The tbl language formats tables. It is used within mdoc(7) and man(7) pages. This manual …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…