Query
SELECT Name, Active__c , Industry
FROM Account
WHERE (Active__c = 'Yes' AND Industry ='Energy')
ORDER BY Name
LIMIT 10
Note: We set LIMIT =10 but there are only 3 record in the results. The reason is because there are only 3 records satisfying the condition.
Query Results
Video
Video does not exists.