Answers for "Query to delete all record of table without deleting the table:"

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
0

delete all records from table except sql

delete from yourTableName where yourColumnName NOT
IN(‘yourValue1’,‘yourValue2’,‘yourValue3’,.........N);
Posted by: Guest on May-14-2020

Code answers related to "Query to delete all record of table without deleting the table:"

Browse Popular Code Answers by Language