FREEZE [ boolean ]
DELIMITER 'delimiter_character'
NULL 'null_string'
+ DEFAULT 'default_string'
HEADER [ boolean | MATCH ]
QUOTE 'quote_character'
ESCAPE 'escape_character'
FORCE_NOT_NULL ( column_name [, ...] )
FORCE_NULL ( column_name [, ...] )
ENCODING 'encoding_name'
- DEFAULT 'default_string'
+
+ DEFAULT
+
+ Specifies the string that represents a default value. Each time the string
+ is found in the input file, the default value of the corresponding column
+ will be used.
+ This option is allowed only in COPY FROM, and only when
+ not using binary format.
+
+
+
+
HEADER
-
- DEFAULT
-
- Specifies the string that represents a default value. Each time the string
- is found in the input file, the default value of the corresponding column
- will be used.
- This option is allowed only in COPY FROM, and only when
- not using binary format.
-
-
-
-
WHERE