Answers for "SQL Query to delete all rows in a table without deleting the table (structure, attributes, and indexes)"

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 "SQL Query to delete all rows in a table without deleting the table (structure, attributes, and indexes)"

Browse Popular Code Answers by Language