how to delete the data from table sqll 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: delete all rows from table sql
-- Quick, no possible rollback
TRUNCATE TABLE my_table;
-- With rollback
DELETE FROM my_table;
COMMIT;