Learn SQL basics in just 15 minutes with this tutorial focused on using SQL with MySQL. Topics covered include: - What SQL is ...
I'm trying to figure out how to use the SQL where/in syntax with a paramterized query. For instance let's say I'd like to run the following query: select * from customers where custid in (1,2,3); I ...
Sorry. I know you were looking for a cleaner way of doing it but if I were in your situation, i'd stick the above in a View and use that.