SQL面试题:有A B C三列,用SQL语句实现:当A列大于B列时选择A列否则选择B列

时间:2021-01-19 15:34:50

.请教一个面试中遇到的SQL语句的查询问题

表中有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

    1. drop table table1
    2. create table table1(
    3. a int,
    4. b int,
    5. c int
    6. )
    7. insert into table1 values(22,24,23)
    8. select * from table1
    9. select (case when a>b then a else b end),(case when b>c then b else c end)
    10. from table1
    11. select (case when a>b then a
    12. when a>c then a
    13. when b>c then b else c
    14. end)
    15. from table1