ORACLE如果一个字段包含指定的值?
select (case when instr (x,'a')>0 or instr (x,'b')>0 or instr (x,'c')>0 then 1 else 0 end)from r大概是这个意思。