日期:2014-05-17  浏览次数:20395 次

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