表中有A B C三列,用SQL语句实现:当A列大于B列时选择A列否则选择B列,当B列大于C列时选择B列否则选择C列。
select (case when a>b then a else b end), (case when b>c then b esle c end) from table_name
本文共 150 字,大约阅读时间需要 1 分钟。
select (case when a>b then a else b end), (case when b>c then b esle c end) from table_name
转载地址:http://wxkjl.baihongyu.com/