Previous |
Next
What is the SQL DROP TABLE Statement?The SQL DROP TABLE statement is the SQL command that removes an entire SQL table. Why Use the SQL DROP TABLE Statement?When a SQL table must be removed, use the SQL DROP TABLE statement. For example, you may have a created a temporary table to stored a report. When the report analysis is complete, you may wish the "clean up" the database by removing the table. Dropping tables have the benefit of:
BEWARE! Dropping a table results in losing data.
How To Use the SQL DROP TABLE StatementThe SQL DROP TABLE command is used as follows. SQL DROP TABLE Statement Syntax
Before executing a DROP statement you may need or want to:
An error condition may occur for a DROP TABLE statement if there are existing constraints such as foreign keys that are dependent on the table. SQL DROP TABLE Statement Example The following example drops an existing table named PERSON.
|
SQL OVERVIEW
SQL BASICS
SQL SELECT
SQL WHERE
SQL INSERT
SQL UPDATE
SQL DELETE
SQL ADMINISTRATION
SQL CREATE DATABASE
SQL DROP DATABASE
SQL CREATE TABLE
SQL ALTER TABLE
SQL DROP TABLE
SQL CREATE INDEX
SQL DROP INDEX
SQL ADD FOREIGN KEY
SQL DROP FOREIGN KEY
SQL CREATE VIEW
SQL DROP VIEW
SQL ADVANCED
SQL CONCAT
SQL SUBSTRING
SQL TRIM
SQL AND & OR
SQL IN
SQL BETWEEN
SQL LIKE
SQL DISTINCT
SQL GROUP BY
SQL AGGREGATE
SQL HAVING
SQL ORDER BY
SQL JOIN
SQL OUTER JOIN
SQL SYNTAX
| HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX |
| Copyright© 1999-2006, First Place Software, Inc. |






