github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/docs/generated/sql/bnf/import_dump.bnf (about) 1 import_stmt ::= 2 'IMPORT' import_format file_location 'WITH' kv_option_list 3 | 'IMPORT' import_format file_location 4 | 'IMPORT' 'TABLE' table_name 'FROM' import_format file_location 'WITH' kv_option_list 5 | 'IMPORT' 'TABLE' table_name 'FROM' import_format file_location 6 | 'IMPORT' 'INTO' table_name '(' insert_column_list ')' import_format 'DATA' '(' file_location ( ( ',' file_location ) )* ')' 'WITH' kv_option_list 7 | 'IMPORT' 'INTO' table_name '(' insert_column_list ')' import_format 'DATA' '(' file_location ( ( ',' file_location ) )* ')' 8 | 'IMPORT' 'INTO' table_name import_format 'DATA' '(' file_location ( ( ',' file_location ) )* ')' 'WITH' kv_option_list 9 | 'IMPORT' 'INTO' table_name import_format 'DATA' '(' file_location ( ( ',' file_location ) )* ')'