+1 vote
in Class 12 by kratos

Name the SQL commands used to ;

(i) Physically delete a table from the database.

(ii) Display the structure of a table.

1 Answer

+4 votes
by kratos
 
Best answer

(i) DROP TABLE;

OR

DROP TABLE ;

(ii) DESCRIBE ;

OR

DESC ;

...