User Story
As a sales manager at XYZ Corporation, I want to track all Opportunities with a Stage of "Closed Won" and an Amount greater than $10,000 so that I can focus my efforts on high-value deals and maximize our revenue potential.
SOQL
List<Opportunity> opportunities = [SELECT Id, Name, CloseDate, Amount FROM Opportunity WHERE StageName = 'Closed Won' AND Amount > 10000];
Video
Video does not exists.