SQL: DROP TABLE Statement
The DROP TABLE statement allows you to remove a table from the database.
The basic syntax for the DROP TABLE statement is:
DROP TABLE table_name;
For example:
DROP TABLE supplier;
This would drop table called supplier.
TECH on the Net |
| Home Privacy Policy Feedback Link to us Site Map Forums |
|
Microsoft Database UNIX Other Top 10 Pages ADVERTISEMENT |
SQL: DROP TABLE StatementThe DROP TABLE statement allows you to remove a table from the database. The basic syntax for the DROP TABLE statement is:
For example:
This would drop table called supplier. |