1
SELECT clientReport.id
FROM clientReport
LEFT JOIN report02 ON (report02.id = clientReport.id)
WHERE report02.id is null;
,做的
SELECT clientReport.id
WHERE clientReport.rowNumber NOT EXISTS (
SELECT clientReport.rowNumber FROM report02, clientReport
WHERE report02.id=clientReport.id);
我需要相當的,想必,一個完整的內部連接也得到錯配report02,不只是CLIENTREPORT。我如何編寫連接來執行此操作?
,問題是......? – mingos
編輯並添加了問題 – Michael