CompTIA ITF+ FC0-U61 Practice Question
As a database administrator, you have been tasked to remove all records from a customer table that have a 'Closed' status. Which SQL statement should you use to accomplish this task effectively without deleting the table structure itself?
TRUNCATE TABLE Customer;
DROP TABLE Customer;
DELETE FROM Customer WHERE Status = 'Closed';
SELECT * FROM Customer WHERE Status = 'Closed';
REMOVE FROM Customer WHERE Status = 'Closed';