sql server 条件查询 当条件A查询无返回结果时,使用条件B再次查询?
sqlserver条件查询当条件A查询无返回结果时,如何使用条件B再次查询?DECLARE@countintselect*into#table2fromtable1whe...
sql server 条件查询 当条件A查询无返回结果时,如何使用条件B再次查询?
DECLARE @count int
select * into #table2 from table1 where id ='A'
select @count=count(1) from #table2
if(@count=0)
begin
insert into #table2 select * from table1 where id ='B'
end
大概就是这么个东西,想问问有没有啥类似的函数,或者优化下过程 展开
DECLARE @count int
select * into #table2 from table1 where id ='A'
select @count=count(1) from #table2
if(@count=0)
begin
insert into #table2 select * from table1 where id ='B'
end
大概就是这么个东西,想问问有没有啥类似的函数,或者优化下过程 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询