Say I have an array with IDs:
values = [0, 43, 5]
Now I want to go through my table "tbl_EVENTS" and return every row where EVENTID = 0, 43, or 5.
Every ID will only appear once. So I could technically do three different queries.
I am working with a javascript frameworks that builds an SQL string in the end, so I could wrap this into a for loop if necessary.