DROP MASK RULE

Description

The DROP MASK RULE syntax is used to drop existing mask rule.

Syntax

Grammar Railroad diagram

  1. DropEncryptRule ::=
  2. 'DROP' 'MASK' 'RULE' ifExists? maskRuleName (',' maskRuleName)*
  3. ifExists ::=
  4. 'IF' 'EXISTS'
  5. maskRuleName ::=
  6. identifier

Supplement

  • ifExists clause used for avoid Mask rule not exists error.

Example

  • Drop mask rule
  1. DROP MASK RULE t_mask, t_mask_1;
  • Drop mask rule with ifExists clause
  1. DROP MASK RULE IF EXISTS t_mask, t_mask_1;

Reserved words

DROP, MASK, RULE