求助一个sql语句
表中有ABC三列,当a列大于b列时选择A列否则选择B列,当B列大于C列时选择B列否则选择C列 该怎么实现啊。
select case when A>B then A else B end AS AB最大列, case when B>C then B else C end AS BC最大列 from ABC
select case when a>b then a else b end ,case when b>c then b else c end from 表名