COUNT DB_DISCOVERY RULE
Description
The COUNT DB_DISCOVERY RULE
syntax is used to query the number of database discovery rules for specified database.
Syntax
Grammar Railroad diagram
CountDBDiscoveryRule::=
'COUNT' 'DB_DISCOVERY' '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 | rule type |
database | the database to which the rule belongs |
count | the number of the rule |
Example
- Query the number of database discovery rules for specified database.
COUNT DB_DISCOVERY RULE FROM discovery_db;
mysql> COUNT DB_DISCOVERY RULE FROM discovery_db;
+--------------+-----------------+-------+
| rule_name | database | count |
+--------------+-----------------+-------+
| db_discovery | discovery_db | 1 |
+--------------+-----------------+-------+
1 row in set (0.00 sec)
- Query the number of database discovery rules for current database.
COUNT DB_DISCOVERY RULE;
mysql> COUNT DB_DISCOVERY RULE;
+--------------+-----------------+-------+
| rule_name | database | count |
+--------------+-----------------+-------+
| db_discovery | discovery_db | 1 |
+--------------+-----------------+-------+
1 row in set (0.00 sec)
Reserved word
COUNT
, DB_DISCOVERY
, RULE
, FROM
Related links
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .