...数据的话就显示到另外一个表中,sql 语句如何实现?
发布网友
发布时间:2024-10-24 05:17
我来回答
共3个回答
热心网友
时间:2024-10-25 13:46
insert into 另一个表
select from 表
where 找到的条件
热心网友
时间:2024-10-25 13:44
最好是用存储过程。关键是用EXISTS关键词。
if(EXISTS(select top 1 * from table_a where ....)
begin
select * from table_a where ...
end
else
begin
select * from table_b where...
end
热心网友
时间:2024-10-25 13:42
方法1.
if exist (select * from tableA where 条件)
select * from tableA where 条件
else
select * from tableB where 条件
方法2:
create table #tmp(c1 nvarchar(200),c2 nvarchar(200))
insert into #tmp
select c1,c2 from tableA where 条件
insert into #tmp
select c1,c2 from tableB where 条件
select * from #tmp