SHOW SHARDING TABLE NODES
Description
SHOW SHARDING TABLE RULES USED ALGORITHM
syntax is used to query sharding rules used specified sharding algorithm in specified logical database
Syntax
ShowShardingTableRulesUsedAlgorithm::=
'SHOW' 'SHARDING' 'TABLE' 'RULES' 'USED' 'ALGORITHM' algorithmName ('FROM' databaseName)?
algorithmName ::=
identifier
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
Columns | Descriptions |
---|---|
type | Sharding rule type |
name | Sharding rule name |
Example
- Query sharding table rules for the specified sharding algorithm in spicified logical database
SHOW SHARDING TABLE RULES USED ALGORITHM table_inline FROM test1;
mysql> SHOW SHARDING TABLE RULES USED ALGORITHM table_inline FROM test1;
+-------+--------------+
| type | name |
+-------+--------------+
| table | t_order_item |
+-------+--------------+
1 row in set (0.00 sec)
- Query sharding table rules for specified sharding algorithm in the current logical database
SHOW SHARDING TABLE RULES USED ALGORITHM table_inline;
mysql> SHOW SHARDING TABLE RULES USED ALGORITHM table_inline;
+-------+--------------+
| type | name |
+-------+--------------+
| table | t_order_item |
+-------+--------------+
1 row in set (0.01 sec)
Reserved word
SHOW
, SHARDING
, TABLE
, RULES
, USED
, ALGORITHM
, FROM
Related links
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .