I want a sql query which serves to return a list of values of the inputted and get a returned list.
suppoze I have two fields in a table.
values [1-a,2-b,3-c,4-d], I pass in [a,c] how do I get [1,3]?
I want a sql query which serves to return a list of values of
Share
You need to iterate through the queries list and store the results in a results list. I dont think you can query a list of values at a time. One more approach is you can use ‘where value = a or value = c’.