Invoice table contains: ID, Order_ID,... I'm trying to create Custom View for Order table:
SELECT ID FROM Order WHERE Status='Confirmed' AND Invoice table doesn't include Order_ID
This query gives: All orders confirmed but no invoice is issued for each of them. My question is: How do I write Invoice table doesn't include Order_ID in the SQL query? Thanks,