nerdexam
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)
  • A
    14% (4)
  • B
    3% (1)
  • C
    7% (2)
  • D
    76% (22)

Community Discussion

No community discussion yet for this question.

Full PDII Practice