T
SQL Tutorial DROP TABLE statement with syntax and examples.
DESCRIPTION
In
T SQL Tutorial DROP TABLE statement allows you to remove or
delete a table from the SQL Server database.
SYNTAX
The
syntax for the T SQL DROP TABLE statement is:
DROP TABLE
table_name;
PARAMETERS
OR ARGUMENTS
table_name is
the name of the table to remove from the database.
EXAMPLE
Let's
look at an example that shows how to drop a table using the T SQL DROP TABLE
statement.
For
example:
DROP TABLE Customer;
This
DROP TABLE statement example would drop the table called Customer
No comments:
Post a Comment