SQL Guide Contents Page
SQL Drop Command
Used to remove an entire table from the database. Syntax:
drop table tablename
Example
drop table citylist;
SQL Guide Contents Page