-
+
column
There is no COPY statement in SQL92.
+ The following syntax was used by pre-7.3 servers and is still supported:
+
+ COPY [ BINARY ] table [ WITH OIDS ]
+ FROM { 'filename' | stdin }
+ [ [USING] DELIMITERS 'delimiter' ]
+ [ WITH NULL AS 'null string' ]
+ COPY [ BINARY ] table [ WITH OIDS ]
+ TO { 'filename' | stdout }
+ [ [USING] DELIMITERS 'delimiter' ]
+ [ WITH NULL AS 'null string' ]
+
+
FOR UPDATE cannot be used in contexts where returned rows can't be clearly
identified with individual table rows; for example it can't be used with
- aggregation.
+ aggregation. FOR UPDATE may also appear before LIMIT for portability with
+ pre-7.3 servers.