delete * from table\ code example
Example 1: delete table sql
DROP TABLE table_name;
Example 2: remove from table where
DELETE FROM my_table; -- all rows
DELETE FROM my_table WHERE my_id = 12345;
DELETE FROM my_table WHERE my_id IN (SELECT id2 FROM my_table2);