how to delete mysql row from id 9809 to id 17275?
sql =" DELETE from Table WHERE id = 9809 to id= 17275"
how to delete from the start id to the end id?
how to delete mysql row from id 9809 to id 17275?
sql =" DELETE from Table WHERE id = 9809 to id= 17275"
how to delete from the start id to the end id?
if you want delete a range of numeric values you could use between
sql =" DELETE from Table WHERE id between 9809 and 17275"
DELETE from Table WHERE cast(id as unsigned) >= 9809 and cast(id as unsigned)<=17275;