SQL语句 select from where中可否嵌入if条件语句?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL语句 select from where中可否嵌入if条件语句?相关的知识,希望对你有一定的参考价值。

不可以,可以用case when选择语句,但是case when只能返回标量值类型,不能完全像if那样使用 参考技术A 可以使用 case when 这个,但不能加入if。
if是控制语句,不是SQL语句。
参考技术B select语句中只能使用case when then来判断,然后where条件中直接使用or and就可以区分了啊。
其实select的时候如果只是单纯的判断是否为空什么的,很多函数都可以解决,比如nvl,nvl2追问

or就解决了!谢谢

本回答被提问者采纳
参考技术C 可以使用case when,不能用if,如:
select case when 列1 = 'a' then 'A'
when 列1 = 'b' then 'B'
when 列1 = 'c' then 'C'
end
from 表

sql嵌套删除语句

怎么实现嵌套删除??????? 供应商号 和 货物号 为表主键
Sql = "delete * from 供应商货物表 where 供应商号=select 供应商号 from 供应商表 where 供应商名='" & Combo1.Text & "' and 货物号=select 货物号 from 商品表 where 货物名=‘" & List1.Text & "'"
急急 在线等

Sql = "delete * from 供应商货物表 where 供应商号=(select 供应商号 from 供应商表 where 供应商名='" & Combo1.Text & "') and 货物号=(select 货物号 from 商品表 where 货物名=‘" & List1.Text & "')" 参考技术A 把 delete * from 改成 delete from 就可以了 其他地方没有错误。。。 参考技术B delete *
from 供应商货物表 a
where 供应商名 = ****
and exists(select 1 from 商品表 b where a.货物号 = b.货物号)

以上是关于SQL语句 select from where中可否嵌入if条件语句?的主要内容,如果未能解决你的问题,请参考以下文章

简述SELECT语句中的FROM、WHERE以及ORDER BY子句的作用。SQL Server

SQL查询语句(未补充)

SQL查询语句(未补充)

sql嵌套删除语句

SQL 语句 select sum(a) from table1 where b=3

vfp 中 SQL语句 exists