如何使用 PL-SQL 比较两个各有 500 列的表
我需要比较不同数据库中的两个表并检查两个表中的数据是否匹配。
比较应返回一个结果,显示使用精确的列与列数据检查不匹配的行。
这在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
返回 table1 中与 table2 中的行不完全匹配的所有行:
并返回 table1 中与 table2 中的行完全匹配的所有行:
To return all rows in table1 that do not match exactly the rows in table2:
And to return all rows in table1 that match exactly what is in table2: