问题描述
- 求sql语句中带有条件的查询
-
我现在有一张users表,有字段uid,uname,address,phone1,phone2,phone3:
我想在这张表中这样查:
主要查phone1,但是如果有一条数据的phone1位空的话,就查phone2,如果phone1,phone2都为空就查phone3,这样的SQL语句要怎么写呢,求大神帮忙解答????
解决方案
select case when phone1 is null then (
case when phone2 is null then phone3 else phone2 end
) else phone1 end from users
解决方案二:
我要查询出所有的部门,除了它自己以外。
情景:我需要对一个部门的类别进行修改,在选择它的上级部门中,我需要显示所有的部门,但需除开它自己。
请问该SQL语句应该如何写比较好?......
答案就在这里:求条件查询的sql语句
----------------------
解决方案三:
使用case when then 来查询,具体的你可以上网搜一下
解决方案四:
使用case when then 来查询
时间: 2024-10-03 12:08:59