+ 5
What the deffrence between drope and delete in mysql
2 Réponses
+ 3
drop statement affects the structure of the item (tables or views as example), or remove the item itself, but delete affects the data which inserted in the table.
(DDL vs DML)😉
Hope it's helping..
+ 1
drop- remove table
delete- remove row in table