KnowledgeBoat Logo

Computer Science

DELETE from <table> command is same as DROP TABLE command.

DDL & DML

1 Like

Answer

False

Reason — DELETE from <table> command is used to remove all the contents from the table, leaving it empty. On the other hand, the DROP TABLE command is used to delete the table from the database along with all its data and structure.

Answered By

3 Likes


Related Questions