UNLOAD SINGLE TABLE
Description
The UNLOAD SINGLE TABLE
syntax is used to unload single table.
Syntax
Grammar Railroad diagram
unloadSingleTable ::=
'UNLOAD' 'SINGLE' 'TABLE' tableNames
tableNames ::=
tableName (',' tableName)*
tableName ::=
identifier
Supplement
- Unlike loading, only the table name needs to be specified when unloading a single table
Example
- Unload specified single table
UNLOAD SINGLE TABLE t_single;
- Load all single tables
UNLOAD SINGLE TABLE *;
-- or
UNLOAD ALL SINGLE TABLES;
Reserved word
UNLOAD
, SINGLE
, TABLE
, ALL
, TABLES
Related links
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .