弱弱的问题SQL 语句 if else 的问题 (sqlserver)

declare@a1char(10)set@a1=1select*fromcustascif@a1>0wherec.cust_id='0000000000'elsewhe... declare @a1 char(10)
set @a1 = 1
select *
from cust as c
if @a1 > 0
where c.cust_id = '0000000000'
else
where c.cust_id = '0000000021'
我的问题就是 if else 不可以这么用么?
展开
 我来答
祈鹅尚店
2012-09-20 · TA获得超过150个赞
知道小有建树答主
回答量:347
采纳率:100%
帮助的人:157万
展开全部
肯定不是啊,这么用就可以
declare @a1 char(10)set @a1 = 1
if @a1 > 0
select *
from cust as c where c.cust_id = '0000000000'
else
select *
from cust as c where c.cust_id = '0000000021'
追问
这样我知道可以,我的意思主要还是像问题中写的那样,就是 一个查询的一部分 通过if else 来根据条件的变化而变化 可以不可以 。。。哈
追答
你还是用case when 吧,if和else 不是这么用的,要不然就写动态sql语句
baiynijecym
2012-09-20 · TA获得超过1841个赞
知道大有可为答主
回答量:1411
采纳率:66%
帮助的人:1164万
展开全部
可以使用case 语句


select *
from cust as c
where c.cust_id = case when @a1 > 0 then '0000000000' else '0000000021' end
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式