The SHOW SINGLE TABLE
syntax is used to query single tables for specified database.
ShowSingleTable::=
'SHOW' 'SINGLE' ('TABLES'|'TABLE' tableName) ('FROM' databaseName)?
tableName ::=
identifier
databaseName ::=
identifier
databaseName
is not specified, the default is the currently used DATABASE
. If DATABASE
is not used, No database selected
will be prompted.Column | Description |
---|---|
table_name | Single table name |
resource_name | The resource name where the single table is located |
SHOW SINGLE TABLE t_user FROM test1;
mysql> SHOW SINGLE TABLE t_user FROM test1;
+------------+---------------+
| table_name | resource_name |
+------------+---------------+
| t_user | ds_0 |
+------------+---------------+
1 row in set (0.00 sec)
SHOW SINGLE TABLE t_user;
mysql> SHOW SINGLE TABLE t_user;
+------------+---------------+
| table_name | resource_name |
+------------+---------------+
| t_user | ds_0 |
+------------+---------------+
1 row in set (0.00 sec)
SHOW SINGLE TABLES FROM test1;
mysql> SHOW SINGLE TABLES FROM test1;
+------------+---------------+
| table_name | resource_name |
+------------+---------------+
| t_user | ds_0 |
+------------+---------------+
1 row in set (0.00 sec)
SHOW SINGLE TABLES;
mysql> SHOW SINGLE TABLES;
+------------+---------------+
| table_name | resource_name |
+------------+---------------+
| t_user | ds_0 |
+------------+---------------+
1 row in set (0.00 sec)
SHOW
, SINGLE
, TABLE
, TABLES
, FROM