sql delete table rows code example
Example 1: delete table sql
DROP TABLE table_name;
Example 2: sql delete row from table
DELETE FROM table_name WHERE condition;
Example 3: how to delete a table data in sql
DELETE FROM table_name; //will delete the table data without affecting the table structue