The COUNT READWRITE_SPLITTING RULE syntax is used to query the number of readwrite splitting rules for specified database.
CountReadwriteSplittingRule::=
  'COUNT' 'READWRITE_SPLITTING' 'RULE' ('FROM' databaseName)?
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 | 
|---|---|
| rule_name | rule type | 
| database | the database to which the rule belongs | 
| count | the number of the rule | 
COUNT READWRITE_SPLITTING RULE FROM test1;
mysql> COUNT READWRITE_SPLITTING RULE FROM test1;
+---------------------+----------+-------+
| rule_name           | database | count |
+---------------------+----------+-------+
| readwrite_splitting | test1    | 1     |
+---------------------+----------+-------+
1 row in set (0.02 sec)
COUNT READWRITE_SPLITTING RULE;
mysql> COUNT READWRITE_SPLITTING RULE;
+---------------------+----------+-------+
| rule_name           | database | count |
+---------------------+----------+-------+
| readwrite_splitting | test1    | 1     |
+---------------------+----------+-------+
1 row in set (0.00 sec)
COUNT, READWRITE_SPLITTING, RULE, FROM
