Puedes usar el between
función:
delete from exampleTable where id between 40000 and 50000
o:
delete from exampleTable where id >= 40000 and id <= 50000
bastante simple?
Puedes usar el between
función:
delete from exampleTable where id between 40000 and 50000
o:
delete from exampleTable where id >= 40000 and id <= 50000
bastante simple?