Answers for "remove all rows from sql table"

14

delete all records from table

DELETE FROM table_name;
Posted by: Guest on June-01-2020
0

delete all records from table except sql

DELETE FROM my_table WHERE col1 > 2;
DELETE FROM my_table WHERE col1 IS NOT NULL;
Posted by: Guest on May-08-2021

Code answers related to "remove all rows from sql table"

Browse Popular Code Answers by Language