sql delete row from table where id code example
Example 1: delete record by id sql
DELETE FROM table_name WHERE condition;
Example 2: sql delete row from table
DELETE FROM table_name WHERE condition;
Example 3: sql delete row from table where id
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);