The DROP DEFAULT SHARDING STRATEGY syntax is used to drop the default sharding strategy from the current database.
DropDefaultShardingStrategy ::=
'DROP' 'DEFAULT' 'SHARDING' ('TABLE' | 'DATABASE') 'STRATEGY' ifExists?
ifExists ::=
'IF' 'EXISTS'
ifExists clause is used to avoid Default sharding strategy not exists error.DROP DEFAULT SHARDING TABLE STRATEGY;
DROP DEFAULT SHARDING DATABASE STRATEGY;
ifExists clauseDROP DEFAULT SHARDING TABLE STRATEGY IF EXISTS;
ifExists clauseDROP DEFAULT SHARDING DATABASE STRATEGY IF EXISTS;
DROP, DEFAULT, SHARDING, TABLE, DATABASE, STRATEGY, IF, EXISTS
