postgre - 根据 t2 中的数据查找 t1 中不存在的行
我有一个数据表t1
,其中列出了设备和在其上定义的policy
对象,以及一个架构表t2
,其中包含的主列表设备上应存在的 >policy
对象。我正在尝试编写一个查询,该查询将返回设备上缺少的所有策略的列表。
t1
:
名称 | os | 策略 |
---|---|---|
sw01 | ios | 1000M |
sw01 | ios | 2G |
sw02 | iosxr | 1G |
sw02 | iosxr | 2G |
t2
:
os | 策略 |
---|---|
ios | 1G |
ios | 2G |
ios | 3G |
iosxr | 1G |
使用上面的示例,查询应该返回类似以下内容:
name | policy_missing |
---|---|
sw01 | 1G |
我已经尝试过有一些不同的东西,但以前从未编写过这样的查询,即一个表中的一行值的键来查找另一个表中缺少的内容。任何帮助将不胜感激,谢谢!
I have a data table t1
that lists devices and policy
objects defined on them, and a schema table t2
that contains the master list of policy
objects that should exist on devices. I am trying to write a query that will return a list of all policy's that are missing on devices.
t1
:
name | os | policy |
---|---|---|
sw01 | ios | 1000M |
sw01 | ios | 2G |
sw02 | iosxr | 1G |
sw02 | iosxr | 2G |
t2
:
os | policy |
---|---|
ios | 1G |
ios | 2G |
ios | 3G |
iosxr | 1G |
Using the sample above, the query should return something like:
name | policy_missing |
---|---|
sw01 | 1G |
I have tried a few different things, but have never written a query like this before, that keys of a row of values from one table to find what is missing on another. Any help would be appreciated, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
干得好
here you go