github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/docs/generated/sql/bnf/interleave.bnf (about)

     1  create_table_stmt ::=
     2  	'CREATE' opt_temp_create_table 'TABLE' table_name '(' table_definition ')' 'INTERLEAVE' 'IN' 'PARENT' table_name '(' name_list ')' opt_partition_by
     3  	| 'CREATE' opt_temp_create_table 'TABLE' table_name '(' table_definition ')'  opt_partition_by
     4  	| 'CREATE' opt_temp_create_table 'TABLE' 'IF' 'NOT' 'EXISTS' table_name '(' table_definition ')' 'INTERLEAVE' 'IN' 'PARENT' table_name '(' name_list ')' opt_partition_by
     5  	| 'CREATE' opt_temp_create_table 'TABLE' 'IF' 'NOT' 'EXISTS' table_name '(' table_definition ')'  opt_partition_by