在sql的where条件下怎么加判断语句?
比如说:有一个参数A,如果A等于null的话,where后面就加上numisnull否则就加上null=A语句是select*fromdualwhere后面怎么写???请...
比如说:有一个参数 A , 如果A等于null的话,where后面就加上 num is null 否则就加上 null = A 语句是select * from dual where 后面怎么写??? 请教各位大侠了
展开
5个回答
2013-05-30
展开全部
一句sql恐怕难写,要写存储过程或是function
2013-05-30
展开全部
case where datediff(dd,getdate(),baoziqi)<20 then '停止销售' else '继续销售' end
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
之前在搜索这个问题,我是用这样类似的逻辑:
select * from table where (case when A is null then (case when num is NULL then 1 else 0 end) else (case when num=A then 1 else 0 end) end)=1
select * from table where (case when A is null then (case when num is NULL then 1 else 0 end) else (case when num=A then 1 else 0 end) end)=1
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-05-30
展开全部
select * from dual where (num = A and A = 'XX') or (A <> 'XX' and num is null)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-05-30
展开全部
你自己不都写出来了?我想知道的是你的A是外界传入的还是什么?还有就是你用的数据库是oracle吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询