DROP TABLE table_name;
drop table toys; select table_name from user_tables where table_name = 'TOYS';
DROP TABLE my_table;
Deletes a table from a database. Example: Removes the users table. DROP TABLE users;