兩張表數據不一致進行對比,找不不一樣的數據,
使用外連接查詢
SELECT * from ys_yhxx yh1 left join ys_yhxx_copy1 yh2 on yh1.customerNo=yh2.customerNo WHERE yh2.customerId is null;
SELECT * from ys_yhxx_copy1 yh1 left join ys_yhxx yh2 on yh1.customerNo=yh2.customerNo WHERE yh2.customerId is null;