DROP BROADCAST TABLE RULE

Description

The DROP BROADCAST TABLE RULE syntax is used to drop broadcast table rule for specified broadcast tables

Syntax

Grammar Railroad diagram

  1. DropBroadcastTableRule ::=
  2. 'DROP' 'BROADCAST' 'TABLE' 'RULE' ifExists? tableName (',' tableName)*
  3. ifExists ::=
  4. 'IF' 'EXISTS'
  5. tableName ::=
  6. identifier

Supplement

  • tableName can use the table of existing broadcast rules;
  • ifExists clause is used for avoid Broadcast rule not exists error.

Example

  • Drop broadcast table rule for specified broadcast table
  1. DROP BROADCAST TABLE RULE t_province, t_city;
  • Drop broadcast table rule with ifExists clause
  1. DROP BROADCAST TABLE RULE IF EXISTS t_province, t_city;

Reserved word

DROP, BROADCAST, TABLE, RULE