
sql中如何同时判断两个条件?
我想判断数据库A和B是否存在,A数据库存在就执行语句A,B数据库存在就执行语句B,同时存在就执行语句C,用一个IF能否实现。多个IFELSE的语法...
我想判断数据库A和B是否存在,A数据库存在就执行语句A,B数据库存在就执行语句B,同时存在就执行语句C,用一个IF 能否实现。
多个IF ELSE 的语法 展开
多个IF ELSE 的语法 展开
2个回答
展开全部
参考以下语句:
if db_id('A') is not null and db_id('B') is null
excute A
else if db_id('A') is null and db_id('B') is not null
excute B
else if db_id('A') is not null and db_id('B') is not null
excute C
go
if db_id('A') is not null and db_id('B') is null
excute A
else if db_id('A') is null and db_id('B') is not null
excute B
else if db_id('A') is not null and db_id('B') is not null
excute C
go
追问
只有IF,没有ELSE,请列出多个IF ELSE 的语法
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if {} else if {} else {}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |