how to delete data from a table code example
Example 1: how to delete a table data in sql
DELETE FROM table_name; //will delete the table data without affecting the table structue
Example 2: sql delete all values in a column
UPDATE TableName SET ColumnName = NULL