InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Truncate And Delete In Mysql? |
|
Answer» The DELETE command is USED to delete DATA from a table. It only deletes the ROWS of data from the table while, truncate is very DANGEROUS command and should be used carefully because it deletes every row permanently from a table. The DELETE command is used to delete data from a table. It only deletes the rows of data from the table while, truncate is very dangerous command and should be used carefully because it deletes every row permanently from a table. |
|