The SHOW SHARDING ALGORITHMS syntax is used to query the sharding algorithms in the specified database.
ShowShardingAlgorithms::=
  'SHOW' 'SHARDING' 'ALGORITHMS' ('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 | 
|---|---|
| name | Sharding algorithm name | 
| type | Sharding algorithm type | 
| props | Sharding algorithm properties | 
SHOW SHARDING ALGORITHMS;
mysql> SHOW SHARDING ALGORITHMS;
+-------------------------+--------+-----------------------------------------------------+
| name                    | type   | props                                               |
+-------------------------+--------+-----------------------------------------------------+
| t_order_inline          | INLINE | algorithm-expression=t_order_${order_id % 2}        |
| t_order_item_inline     | INLINE | algorithm-expression=t_order_item_${order_id % 2}   |
+-------------------------+--------+-----------------------------------------------------+
2 row in set (0.01 sec)
SHOW, SHARDING, ALGORITHMS, FROM
