Computer Science, asked by ranu2039, 1 month ago

write a query to drop table suppliers​

Answers

Answered by Itzcupkae
31

Explanation:

\huge{\pink{\underline{\underline{Answer\implies}}}}

Syntax

The syntax for the DROP TABLE statement in SQL is:

DROP TABLE table_name;

Parameters or Arguments

Parameters or Argumentstable_name

The name of the table to remove from the database.

Answered by Sweet318
0

Explanation:

To delete an entire table including all of its rows, issue the drop table command followed by the tablename. drop table is different from deleting all of the records in the table.

Similar questions