我有一个视图A
和一个视图B
。
在A
我有很多关于某些系统的信息,例如IP
和port
我希望保留所有系统。在B
中,我只想在A
添加一条信息。
两个视图之间的匹配字段为IP
和Port
。所以我必须匹配两个视图中具有相同IP和端口的主机。
示例:
IP | OS | Hostname | Port | Protocol
1 | Win | hostONE | 80 | tcp
1 | Win | hostONE | 443 | tcp
1 | Win | hostONE | 8080 | tcp
2 | Linux | hostTWO | 21 | tcp
2 | Linux | hostTWO | 80 | tcp
3 | Linux | hostTR | 22 | tcp
IP | Port | State
1 | 443 | Open
2 | 80 | Closed
IP | OS | Hostname | Port | Protocol | State
1 | Win | hostONE | 80 | tcp |
1 | Win | hostONE | 443 | tcp | Open
1 | Win | hostONE | 8080 | tcp |
2 | Linux | hostTWO | 21 | tcp | Closed
2 | Linux | hostTWO | 80 | tcp |
3 | Linux | hostTR | 22 | tcp |
注意:视图A中的某些主机可能在视图B中没有与IP /端口相关的项目。
视图A的某些主机也可能在视图B中有一些匹配。
我认为我应该使用LEFT JOIN来获取View A的所有条目以及View B的正确关联条目,但它不起作用。 我无法使用正确的WHERE子句和JOIN解决方案调整查询。
有什么想法吗?
答案 0 :(得分:48)
select a.ip, a.os, a.hostname, a.port, a.protocol,
b.state
from a
left join b on a.ip = b.ip
and a.port = b.port
答案 1 :(得分:5)
让我们这样试试:
select
a.ip,
a.os,
a.hostname,
a.port,
a.protocol,
b.state
from a
left join b
on a.ip = b.ip
and a.port = b.port /*if you has to filter by columns from right table , then add this condition in ON clause*/
where a.somecolumn = somevalue /*if you have to filter by some column from left table, then add it to where condition*/
因此,在where
子句中,您只能通过以下方式从右表中按列过滤结果集:
...
where b.somecolumn <> (=) null