この例では、結合インデックスord_cust_idxのSHOW JOIN INDEX文を示します。
SHOW JOIN INDEX ord_cust_idx;この文は、結合インデックスのDDLを報告します。
CREATE JOIN INDEX YourDB.ord_cust_idx ,NO FALLBACK ,CHECKSUM = DEFAULT, MAP = SmallTableMap COLOCATE USING YourDB_ord_cust_idx AS SELECT (YourDB.orders.o_custkey ,YourDB.customer.c_name ) ,(YourDB.orders.o_status , YourDB.orders.o_date ,YourDB.orders.o_comment ) FROM YourDB.orders ,YourDB.customer WHERE YourDB.orders.o_custkey = YourDB.customer.c_custkey PRIMARY INDEX ( o_custkey )