Retro Eye care Haitian Deep Dark Default

SHOW UNLOADED SINGLE TABLES

Description

The SHOW UNLOADED SINGLE TABLES syntax is used to query unloaded single tables.

Syntax

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