This question runs in a pre-configured Salesforce environment - no personal connection required.
Write a method that uses SOQL to find all Account records that do not have a Fax number. The method should return a List of Account records where the Fax field is either null or empty.
Examples:
Input: Database contains accounts with and without fax numbers
Output: List<Account> containing only accounts where Fax is null or empty
Explanation: Returns accounts that have no fax number specified
Example Accounts:
- TechFlow Solutions (Fax: null) - INCLUDED
- Global Manufacturing (Fax: '') - INCLUDED
- Cloud Code Academy (Fax: '+1-555-0199') - EXCLUDED
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Note
You can test your code by connecting to Salesforce, but to save your progress and earn points, you'll need to create an account. Your solutions and achievements will be tracked automatically once you're logged in.