sql 可以用条件运算符吗
比如
select a ,b from 表 where (a〉b?a:b)>c
怎么才能实现 a大于B取a在和C比较 SQL
[解决办法]
select a,b from [表名]
where (case when a > b then a else b end) >c