Deleting a Table
The DROP TABLE
command is used to create a table in SQL.
Syntax
DROP TABLE <table-name>;
Example
DROP TABLE Companies;
The DROP TABLE
command is used to create a table in SQL.
DROP TABLE <table-name>;
DROP TABLE Companies;