日期:2014-05-18  浏览次数:20553 次

求一条SQL语句,原理很简单,但就是不知道怎么写
有A、B两列,要求返回他们每一行中较大的数

A         B
1         2
2         1
1         3
2         3

要求返回
C
2
2
3
3


------解决方案--------------------
select a from tb where a> b
union all
select b from tb where b> a