1Delete data from a table.
2Example: Removes a user with a user_id of 674.
3DELETE FROM users WHERE user_id = 674;
1DELETE FROM my_table; -- all rows
2DELETE FROM my_table WHERE my_id = 12345;
3DELETE FROM my_table WHERE my_id IN (SELECT id2 FROM my_table2);