how to delete a particular row in sql table code example
Example 1: sql delete row from table
DELETE FROM table_name WHERE condition;
Example 2: delete specific row in sql
DELETE FROM Categories
WHERE CategoryID="2"AND CategoryID="3" AND CategoryID="5";