Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 张表格,一张带有客户地址,一张带有邮政编码及其相应的“地理区域”。
邮政编码表缺少 100 多个无法与客户地址邮政编码匹配的邮政编码。
我正在尝试找到一种方法来搜索客户地址邮政编码不在邮政编码表中的所有记录。
首先从邮政编码表中选择不同的邮政编码,然后编写如下查询:从邮政编码不在的客户地址中选择*(从邮政编码表中选择不同的邮政编码)
尝试这样的事情,其中 table1 是您的客户地址表,而 table2 是另一个。
select table1.postcode from table1 left join table2 on table1.postcode = table2.postcode where table2.postcode is null;