Query
SELECT Name, StageName FROM Opportunity WHERE StageName
IN('Prospecting', 'Closed Won', 'Value Proposition')
A query that returns all the accounts that has related contact.
SELECT Id, Name FROM Account WHERE Id IN (SELECT AccountId FROM Contact)
Query Results
A query that returns all the accounts without a contact.
SELECT Id, Name FROM Account WHERE Id NOT IN (SELECT AccountId FROM Contact)
Query Results
Video
Video does not exists.