Let’s say I have a query like this:
SELECT * FROM table_name WHERE venue = "1" OR venue = "10"
That’s great, works fine. But let’s say I have a list of 50 venue numbers. Is there an easy way to do this where I don’t have to write out 50 different ORs?
Thanks!
You can use “IN” instead: