DROP SHADOW RULE

Description

The DROP SHADOW RULE syntax is used to drop shadow rule for specified database

Syntax

  1. DropShadowRule ::=
  2. 'DROP' 'SHADOW' 'TABLE' 'RULE' shadowRuleName ('FROM' databaseName)?
  3. shadowRuleName ::=
  4. identifier
  5. databaseName ::=
  6. identifier

Supplement

  • When databaseName is not specified, the default is the currently used DATABASE. If DATABASE is not used, No database selected will be prompted.

Example

  • Drop shadow rule for specified database
  1. DROP SHADOW RULE shadow_rule FROM test1;
  • Drop shadow rule for current database
  1. DROP SHADOW RULE shadow_rule;

Reserved word

DROP, SHODOW, RULE, FROM