4. SQL Statements
:
DROP
:
DROP Examples
Share this page
DROP Examples
1.
Drop the sales_fact and time_dimension tables:
DROP TABLE sales_fact, time_dimension;
2.
Drop the idx index:
DROP INDEX idx;