sql remove rows based on condition code example
Example 1: delete all records from table
DELETE FROM table_name;
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 rows in sql with condition
DELETE FROM table_name WHERE condition;
// E.g.
DELETE FROM Customer WHERE Age > 65;
DELETE FROM Customer WHERE Age > 65 AND Name = 'XYZ';