Làm thế nào về việc sử dụng một join
? Phần sau hiển thị tất cả các cặp khác nhau:
select tb.*, ts.*
from company tb join
company ts
on tb.company_name = ts.company_name and
ts.address_type = 'shipping' and
tb.address_type = 'billing' and
ts.address <> tb.address;
Nếu bạn chỉ muốn các công ty khác biệt:
select company_name
from company t
group by company_name
having count(distinct case when t.address_type = 'billing' then address end) = 1 and
count(distinct case when t.address_type = 'shipping' then address end) = 1 and
(max(case when t.address_type = 'billing' then address end) <>
max(case when t.address_type = 'shipping' then address end)
);
Lưu ý:điều này cũng kiểm tra xem chỉ có một địa chỉ thanh toán và giao hàng riêng biệt.