COUNT SINGLE_TABLE RULE
Description
The COUNT SINGLE_TABLE RULE
syntax is used to query number of single table rules for specified database.
Syntax
CountSingleTableRule::=
'COUNT' 'SINGLE_TABLE' 'RULE' ('FROM' databaseName)?
databaseName ::=
identifier
Supplement
- When
databaseName
is not specified, the default is the currently usedDATABASE
. IfDATABASE
is not used,No database selected
will be prompted.
Return Value Description
Column | Description |
---|---|
rule_name | Single table rule name |
database | The database name where the single table is located |
count | The count of single table rules |
Example
- Query the number of single table rules for specified database.
COUNT SINGLE_TABLE RULE
mysql> COUNT SINGLE_TABLE RULE;
+--------------+----------+-------+
| rule_name | database | count |
+--------------+----------+-------+
| t_single_0 | ds | 2 |
+--------------+----------+-------+
1 row in set (0.02 sec)
Reserved word
COUNT
, SINGLE_TABLE
, RULE
Related links
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .