I wondered if I can get a query like this to work:
"DELETE FROM table WHERE id (BETWEEN 1 AND 5) OR = 8;"
The thing I want to achieve: I want to say; get me the results between some values or also the value if my id = 8.
Unfortunately I only found queries and questions how to search for things like this.
"DELETE FROM table WHERE id BETWEEN 1 AND 5 AND `email`='sarah@sarah.com';"
Or would I have to do it likewise:
"DELETE FROM table WHERE id BETWEEN 1 AND 5 OR id = 8;"
Thanks for a short input on that...
Cheers