Description #
The DROP MASK RULE syntax is used to drop existing mask rule.
Syntax #
DropEncryptRule ::=
'DROP' 'MASK' 'RULE' ifExists? maskRuleName (',' maskRuleName)*
ifExists ::=
'IF' 'EXISTS'
maskRuleName ::=
identifier
Supplement #
ifExistsclause used for avoidMask rule not existserror.
Example #
- Drop mask rule
DROP MASK RULE t_mask, t_mask_1;
- Drop mask rule with
ifExistsclause
DROP MASK RULE IF EXISTS t_mask, t_mask_1;
Reserved words #
DROP, MASK, RULE