SHOW UNLOADED SINGLE TABLES
Description
The SHOW UNLOADED SINGLE TABLES
syntax is used to query unloaded single tables.
Syntax
Grammar Railroad diagram
showUnloadedSingleTables::=
'SHOW' 'UNLOADED' 'SINGLE' 'TABLES'
Return value description
Column | Description |
---|---|
table_name | Single table name |
storage_unit_name | The storage unit name where the single table is located |
Example
- Query unloaded single tables.
SHOW UNLOADED SINGLE TABLES;
mysql> SHOW UNLOADED SINGLE TABLES;
+------------+-------------------+
| table_name | storage_unit_name |
+------------+-------------------+
| t_single | ds_1 |
+------------+-------------------+
1 row in set (0.01 sec)
Reserved word
SHOW
, UNLOADED
, SINGLE
, TABLES
Related links
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .