I want to use select * from xxx where a in ()
At the front end, n devices are passed in at one time, so this is the case:
select * from xxx where a in (‘a’,’b’,’c’);
Now it is like this: select * fromxxxwhere in (‘a, b, c’);
How to write
I use this to solve
http://zy116494718.iteye.com/blog/1156863