如何使用 PL-SQL 比较两个各有 500 列的表

发布于 2024-11-02 16:30:31 字数 100 浏览 0 评论 0原文

我需要比较不同数据库中的两个表并检查两个表中的数据是否匹配。

比较应返回一个结果,显示使用精确的列与列数据检查不匹配的行。

这在 PL-SQL 中可能吗?

I need to compare two tables in different databases and check whether the data in both tables are matching or not.

The compare should return a result showing rows that don't match using an exact column to column data check.

Is this possible in PL-SQL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧瑾黎汐 2024-11-09 16:30:31

返回 table1 中与 table2 中的行不完全匹配的所有行:

select * from table1 except select * from table2

并返回 table1 中与 table2 中的行完全匹配的所有行:

select * from table1 intersect select * from table2

To return all rows in table1 that do not match exactly the rows in table2:

select * from table1 except select * from table2

And to return all rows in table1 that match exactly what is in table2:

select * from table1 intersect select * from table2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文