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
1 Like
Related Questions
Constraints can only be defined with CREATE TABLE command.
Unique and Primary key constraints are the same.
Conditional updates in table data are possible through UPDATE command.
Assertion. The PRIMARY KEY and UNIQUE constraints are the same.
Reason. The columns with PRIMARY KEY or UNIQUE constraints have unique values for each row.