SQL脚本里的IF语句怎么写??
我想在脚本里用if语句判断,比如根据select*fromtable1是否>0来进去相应操作,应该如何写?是否有:if(select*fromtable1)then......
我想在脚本里用if语句判断,比如根据select * from table1 是否> 0来进去相应操作,应该如何写?
是否有:
if ( select * from table1)
then....
else
....
请问类似这种语句的存在吗?应该怎么写? 展开
是否有:
if ( select * from table1)
then....
else
....
请问类似这种语句的存在吗?应该怎么写? 展开
4个回答
展开全部
SQL里面有IF的判断
if exists(select * from table1)
begin
print '存在'
end
else
begin
print '不存在'
end
希望以语句对你有帮助
if exists(select * from table1)
begin
print '存在'
end
else
begin
print '不存在'
end
希望以语句对你有帮助
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if exists (select 1 from table1)
begin
...........
end
else
begin
..............
end
begin
...........
end
else
begin
..............
end
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用case when then end 来实现就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询