2 Day Developer > Using SQL > Using Data Definition Langu... > Dropping a Table With SQL
Dropping a Table With SQL |
Previous |
Next |
To drop (remove completely) a table from the database, use the SQL DROP
statement, as shown in Example: Dropping a Table Using SQL. Be careful when using the DROP
statement to remove database objects.
If you want to delete the rows in the table and keep the table, use the DELETE
statement. See "Deleting Data With the DELETE Statement".