Answers for "oracle join index"

SQL
0

bitmap join index

CREATE BITMAP INDEX cust_sales_bji
ON    sales(customers.state)
FROM  sales, customers
WHERE sales.cust_id = customers.cust_id;
Posted by: Guest on September-21-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language