The CREATE BROADCAST TABLE RULE
syntax is used to create broadcast table rules for tables that need to be
broadcast (broadcast tables)
CreateBroadcastTableRule ::=
'CREATE' 'BROADCAST' 'TABLE' 'RULE' tableName (',' tableName)*
tableName ::=
identifier
tableName
can use an existing table or a table that will be created;CREATE BROADCAST TABLE RULE
more than one time.-- Add t_province, t_city to broadcast table rules
CREATE BROADCAST TABLE RULE t_province, t_city;
CREATE
, BROADCAST
, TABLE
, RULE