如何比较postgres中的两个表
我想比较来自两个不同查询的两个列值。谁能建议一个比较 Postgres 中两列的查询?
I want compare two column values which come from two different queries. Can anyone suggest a query which compares two columns in Postgres?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,最容易理解的——但不一定是最快的——可能是这样的。 (但“比较”可能意味着其他意思。)
您也可以在单个语句中执行此操作,以进行视觉比较。
FULL OUTER JOIN
返回两列中的所有值(同一行中的匹配值),以及NULL
(其中一列缺少另一列中的值)。Well, the easiest to understand--but not necessarily the fastest--is probably something like this. (But you might mean something else by "compare".)
You can also do this in a single statement to give you a visual comparison. A
FULL OUTER JOIN
returns all the values in both columns, with matching values in the same row, andNULL
where one column is missing a value that's in the other column.