sql command to remove all the records from table without removing the table. code example
Example 1: delete all records from table
DELETE FROM table_name;
Example 2: sql delete all values in a column
UPDATE TableName SET ColumnName = NULL
DELETE FROM table_name;
UPDATE TableName SET ColumnName = NULL