I am trying to generate a list of Opportunities with status=WON that do not have any associated orders. I am unable to do this through the advanced find and thought it might be easier through a sql query. Please advise what table/join I should use to look for the null value?
SELECT *
FROM dbo.FilteredOpportunity op
WHERE statecode='1'









