Salesforce
PDII · Question #334
What should a developer use to query all Account fields for the Acme account in their sandbox?
The correct answer is D. SELECT FIELDS(ALL) FROM Account WHERE Name = 'Acme' LIMIT 1. See the full explanation below for the reasoning.
Question
What should a developer use to query all Account fields for the Acme account in their sandbox?
Options
- ASELECT ALL FROM Account WHERE Name = 'Acme' LIMIT 1
- BSELECT * FROM Account WHERE Name - 'Acme' LIMIT 1
- CSELECT FIELDS FROM Account WHERE Name - 'Acme' LIMIT 1
- DSELECT FIELDS(ALL) FROM Account WHERE Name = 'Acme' LIMIT 1
How the community answered
(29 responses)- A14% (4)
- B3% (1)
- C7% (2)
- D76% (22)
Community Discussion
No community discussion yet for this question.