I have many lines in sales and one line in SalesProcessed.
SELECT * FROM Sale INNER JOIN SalesProcessed ON Sale.id<>SalesProcessed.id LIMIT 0,30
This code returns the same line as the identifier in SalesProcessed. Why?
Actually, I need sales lines whose identifier does not exist in SalesProcessed.
source share