The DROP SHARDING ALGORITHM
syntax is used to drop sharding algorithm for specified database.
DropShardingAlgorithm ::=
'DROP' 'SHARDING' 'ALGORITHM' shardingAlgorithmName ('FROM' databaseName)?
shardingAlgorithmName ::=
identifier
databaseName ::=
identifier
databaseName
is not specified, the default is the currently used DATABASE
. If DATABASE
is not used, No database selected
will be prompted.DROP SHARDING ALGORITHM t_order_hash_mod FROM sharding_db;
DROP SHARDING ALGORITHM t_order_hash_mod;
DROP
, SHARDING
, ALGORITHM
, FROM