A logistics company created a shipments table but later deci…
A logistics company created a shipments table but later decided they no longer need it. Which SQL statement should they run to completely remove the table structure and data? DELETE TABLE shipments; TRUNCATE TABLE shipments; DROP TABLE shipments; REMOVE TABLE shipments; Answer: DROP TABLE shipments; Explanation: DROP TABLE removes the table structure and its data entirely. TRUNCATE deletes only the data but keeps the structure. DELETE TABLE and REMOVE TABLE are invalid SQL.