Question: Which statement about the `TRUNCATE TABLE` statement is true?
- It will stop and issue an error when it encounters a row that is referenced by a row in a child table.
- It always first drops, then re-creates a new table.
- It deletes rows one by one on tables with foreign key constraints.
- It does not invoke the `DELETE` triggers associated with the table.
Answer: The correct answer of the above question is Option D:It does not invoke the `DELETE` triggers associated with the table.