SQL面试题:有A B C三列,用SQL语句实现:当A列大于B列时选择A列否则选择B列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL面试题:有A B C三列,用SQL语句实现:当A列大于B列时选择A列否则选择B列相关的知识,希望对你有一定的参考价值。
.请教一个面试中遇到的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
- drop table table1
- create table table1(
- a int,
- b int,
- c int
- )
- insert into table1 values(22,24,23)
- select * from table1
- select (case when a>b then a else b end),(case when b>c then b else c end)
- from table1
- select (case when a>b then a
- when a>c then a
- when b>c then b else c
- end)
- from table1
以上是关于SQL面试题:有A B C三列,用SQL语句实现:当A列大于B列时选择A列否则选择B列的主要内容,如果未能解决你的问题,请参考以下文章