I'm trying to delete specific rows from a table in mysql but find that if I specify a starting point, the query won't work.
Eg. this doesn't work:
DELETE FROM click_log WHERE id='$id' LIMIT 50, 60
but this does:
DELETE FROM click_log WHERE id='$id' LIMIT 60
Again, this works:
DELETE FROM click_log WHERE id='$id' LIMIT 10
But this doesn't:
DELETE FROM click_log WHERE id='$id' LIMIT 0, 10
Any help or explanation would be appreciated.
Thanks
Rob