Retro Eye care Haitian Deep Dark Default

COUNT SINGLE TABLE

Description

The COUNT SINGLE TABLE syntax is used to query the number of single tables for specified database.

Syntax

CountSingleTable::=
  'COUNT' 'SINGLE' 'TABLE' ('FROM' databaseName)?
  
databaseName ::=
  identifier

Supplement

  • When databaseName is not specified, the default is the currently used DATABASE. If DATABASE is not used, No database selected will be prompted.

Return Value Description

Column Description
rule_name Single rule name
database The database name where the single table is located
count The count of single table

Example

  • Query the number of single tables for specified database.
COUNT SINGLE TABLE FROM sharding_db;
mysql> COUNT SINGLE TABLE FROM sharding_db;
+-----------+-------------+-------+
| rule_name | database    | count |
+-----------+-------------+-------+
| single    | sharding_db | 2     |
+-----------+-------------+-------+
1 row in set (0.02 sec)

Reserved word

COUNT, SINGLE, TABLE, FROM