DELETE is used to remove the rows, while DROP is used to remove the tables and Database.
DROP and TRUNCATE are DDL commands, whereas DELETE is a DML command.
DELETE operations can be rolled back (undone), while DROP and TRUNCATE operations cannot be rolled back.
DELETE command is a Data Manipulation Language command whereas, DROP is a Data Definition Language Command.
WHERE clause can be used along with the DELETE command But No clause is used along with DROP command.
DELETE remove some or all the tuples(rows) from a table ,where DROP can remove entire schema, table, domain, or constraints from the database.
DROP and TRUNCATE are DDL commands, whereas DELETE is a DML command.
DELETE operations can be rolled back (undone), while DROP and TRUNCATE operations cannot be rolled back.
DELETE command is a Data Manipulation Language command whereas, DROP is a Data Definition Language Command.
WHERE clause can be used along with the DELETE command But No clause is used along with DROP command.
DELETE remove some or all the tuples(rows) from a table ,where DROP can remove entire schema, table, domain, or constraints from the database.
Quote: