美文网首页
sql server检查里个表的数据是否相同

sql server检查里个表的数据是否相同

作者: DH东海 | 来源:发表于2021-06-28 13:42 被阅读0次

select * into #aa
from tableName where id=75653
select * into #bb
from tableName where id=75653
union all
select *
from tableName where id=75653
--不去重
select * from #aa
INTERSECT
select * from #bb
--自动去重
select * from #aa
except
select * from #bb

相关文章

网友评论

      本文标题:sql server检查里个表的数据是否相同

      本文链接:https://www.haomeiwen.com/subject/rjyqultx.html