Multiple choice technology web technology

which command is used to remove data from table with deleting log file

  1. delete

  2. remove

  3. truncate

  4. drop

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

TRUNCATE removes all data from a table without logging individual row deletions, making it faster than DELETE. DELETE logs each row removal, while DROP removes the entire table structure.