Multiple choice technology databases delete from table_name deletes data from table_name which cannot be rolled back deletes data from table_name but can be rolled back drops table_name none of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation DELETE is a DML (Data Manipulation Language) command that can be rolled back using ROLLBACK if not committed. It removes data but preserves table structure. DROP TABLE removes the entire table (DDL, not rollable).