The DROP SHADOW RULE syntax is used to drop shadow rules from the current database.
DropShadowRule ::=
'DROP' 'SHADOW' 'RULE' ifExists? ruleName (',' ruleName)*
ifExists ::=
'IF' 'EXISTS'
ruleName ::=
identifier
ifExists clause is used to avoid Shadow rule not exists error.DROP SHADOW RULE shadow_rule;
DROP SHADOW RULE shadow_rule, shadow_rule_1;
ifExists clauseDROP SHADOW RULE IF EXISTS shadow_rule;
DROP, SHADOW, RULE, IF, EXISTS
