The DROP SHADOW RULE syntax is used to drop shadow rule for specified database
DropShadowRule ::=
'DROP' 'SHADOW' 'TABLE' 'RULE' ifExists? shadowRuleName ('FROM' databaseName)?
ifExists ::=
'IF' 'EXISTS'
shadowRuleName ::=
identifier
databaseName ::=
identifier
ifExists clause is used for avoid Shadow rule not exists error.DROP SHADOW RULE shadow_rule FROM shadow_db;
DROP SHADOW RULE shadow_rule;
ifExists clauseDROP SHADOW RULE IF EXISTS shadow_rule;
DROP, SHODOW, RULE, FROM
