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 |
Loading
|
MicrosoftDatabaseUNIXMiscTop 10 PagesOther SitesADVERTISEMENT
|
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: DROP TABLE table_name; For Example:
This would drop table called supplier. |