remove records according to where sql code example
Example 1: delete record by id sql
DELETE FROM table_name WHERE condition;
Example 2: delet all record statment sql
DELETE FROM category where category_model is 'NULL';
DELETE FROM table_name WHERE condition;
DELETE FROM category where category_model is 'NULL';