sql delete row from table where id

Solutions on MaxInterview for sql delete row from table where id by the best coders in the world

showing results for - "sql delete row from table where id"
Oriane
25 Mar 2018
1DELETE FROM my_table;		-- all rows
2DELETE FROM my_table WHERE my_id = 12345;
3DELETE FROM my_table WHERE my_id IN (SELECT id2 FROM my_table2);
similar questions
queries leading to this page
sql delete row from table where id