delete row in sql where condition code example
Example 1: how to delete row in sql
delete from TableName where condition;
delete from scrumteam where firstname='Jack';
delete from scrumteam where JobTitle='SDET';
Example 2: 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';