I have rows over 60000 in my table. How can I delete rows from 40000 to 50000 at once?
You can use the between function:
between
delete from exampleTable where id between 40000 and 50000
or:
delete from exampleTable where id >= 40000 and id <= 50000
pretty simple?
1.4m articles
1.4m replys
5 comments
57.0k users