这个可能没有好的方法!!!
也许一个SQL语句不能全部实现!
你这个其中2项目的,那到底是ab,还是ac?还是bc??
包含有a、b、c—— 不明白是含有还是完全等于。
如果是含:
select a,b,c from table
where content like '"a"' or content like '"b"' or content like '"c"'
如果是完全等于:
select a,b,c from table
where content ='a' or content ='b' or content ='c'(如果a、b、c是数字类型就不用加' ')