select 查询中case 代替where 后会高效吗? 一个条件 同时在case 和where...
发布网友
发布时间:2024-10-24 07:27
我来回答
共1个回答
热心网友
时间:1分钟前
case tj when 1 else 0 end
这个语法是错误的,应该是类似于CASE WHEN mod=1 then 1 ELSE 0 END
另外,你如果要高效,建议改成union方式,比如
select xxx from test where tj=1
union
select xxx from test where tj=2