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
You can use BETWEEN:
BETWEEN
DELETE FROM table where id between 163 and 265