What is the difference between 'DROP' and 'TRUNCATE'?
Q1. What is the difference between 'DROP' and 'TRUNCATE'?
Answer: DROP deletes the table structure, while TRUNCATE deletes the data
Explanation: DROP removes the table definition and its data, while TRUNCATE removes the data but keeps the table structure.