I am trying to run a SQL query to delete rows with id\'s 163 to 265 in a table
I tried this to delete less number of rows
DELETE FROM `table` WHE
Please try this:
DELETE FROM `table` WHERE id >=163 and id<= 265