delete value from table sql code example
Example 1: deleting row in sql
delete from TableName where condition;
delete from scrumteam where firstname='Jack';
delete from scrumteam where JobTitle='SDET';
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: how to delete a table data in sql
DELETE FROM table_name; //will delete the table data without affecting the table structue