InterviewSolution
Saved Bookmarks
| 1. |
Explain the difference between the DELETE and TRUNCATE command in a DBMS. |
|
Answer» DELETE command: this command is needed to delete rows from a table based on the condition provided by the WHERE clause.
TRUNCATE command: this command is needed to remove complete data from a table in a database. It is like a DELETE command which has no WHERE clause.
|
|