DROP READWRITE_SPLITTING RULE

Description

The DROP READWRITE_SPLITTING RULE syntax is used to drop readwrite splitting rule for specified database

Syntax

  1. DropReadwriteSplittingRule ::=
  2. 'DROP' 'READWRITE_SPLITTING' 'RULE' ('FROM' databaseName)
  3. databaseName ::=
  4. 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 readwrite splitting rule for specified database
  1. DROP READWRITE_SPLITTING RULE ms_group_1 FROM test1;
  • Drop readwrite splitting rule for current database
  1. DROP READWRITE_SPLITTING RULE ms_group_1;

Reserved word

DROP, READWRITE_SPLITTING, RULE