remove from table where

Solutions on MaxInterview for remove from table where by the best coders in the world

showing results for - "remove from table where"
Nico
18 Feb 2017
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
remove from table where