+ 2
delete can also be used in place of drop. Then what's the difference between them?
I have used delete in place of drop and it works.
2 ответов
+ 4
drop is used to remove the schema of your database while delete is used for deleting the records
+ 3
Delete is conditional & removes rows. Drop will delete the entire table & it's structure.