sql query to delete row by id

Solutions on MaxInterview for sql query to delete row by id by the best coders in the world

showing results for - "sql query to delete row by id"
Luciano
13 Jan 2021
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 query to delete row by id