sql remove data from table code example
Example 1: sql delete row from table
DELETE FROM table_name WHERE condition;
Example 2: sql delete where in
-- Deletes all records where `columnName` matches the values in brackets.
DELETE FROM tableName WHERE columnName IN ('val1', 'val2', 'val3');
Example 3: delete all rows from table sql
-- Quick, no possible rollback
TRUNCATE TABLE my_table;
-- With rollback
DELETE FROM my_table;
COMMIT;