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

  1. ShowShardingTableRulesUsedAlgorithm::=
  2. 'SHOW' 'SHARDING' 'TABLE' 'RULES' 'USED' 'ALGORITHM' algorithmName ('FROM' databaseName)?
  3. algorithmName ::=
  4. identifier
  5. databaseName ::=
  6. 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

ColumnsDescriptions
typeSharding rule type
nameSharding rule name

Example

  • Query sharding table rules for the specified sharding algorithm in spicified logical database
  1. SHOW SHARDING TABLE RULES USED ALGORITHM table_inline FROM test1;
  1. mysql> SHOW SHARDING TABLE RULES USED ALGORITHM table_inline FROM test1;
  2. +-------+--------------+
  3. | type | name |
  4. +-------+--------------+
  5. | table | t_order_item |
  6. +-------+--------------+
  7. 1 row in set (0.00 sec)
  • Query sharding table rules for specified sharding algorithm in the current logical database
  1. SHOW SHARDING TABLE RULES USED ALGORITHM table_inline;
  1. mysql> SHOW SHARDING TABLE RULES USED ALGORITHM table_inline;
  2. +-------+--------------+
  3. | type | name |
  4. +-------+--------------+
  5. | table | t_order_item |
  6. +-------+--------------+
  7. 1 row in set (0.01 sec)

Reserved word

SHOW, SHARDING, TABLE, RULES, USED, ALGORITHM, FROM