Delete from table where 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);

Example 3: delete all records from table

DELETE FROM table_name;

Example 4: sql delete

DELETE FROM table_name WHERE condition;
-- 			Ex.
DELETE FROM Customers WHERE CustomerName='Mustafa Mbari';

Example 5: sql delete where in

-- Deletes all records where `columnName` matches the values in brackets.
DELETE FROM tableName WHERE columnName IN ('val1', 'val2', 'val3');

Tags: