Answers for "Which of the following SQL command deletes all records from table but does not delete the table"

SQL
10

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 yourTableName where yourColumnName NOT
IN(‘yourValue1’,‘yourValue2’,‘yourValue3’,.........N);
Posted by: Guest on May-14-2020

Code answers related to "Which of the following SQL command deletes all records from table but does not delete the table"

Code answers related to "SQL"

Browse Popular Code Answers by Language