ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 226 - Certified Platform Developer II discussion

Report
Export

A company has a custom object. Order__c, that has a custom picklist field. Status__c, with values of New, In Progress," or Fulfilled and a lookup field, Contact_c, to Contact.

Which SOQL query wrii return a unique list of all the Contact records that have no Fulfilled Orders?

A.
SELECT Contact_c From order_c Where id NOT IN (SELECT id FROM_c Where States_c + Fulfilled')
Answers
A.
SELECT Contact_c From order_c Where id NOT IN (SELECT id FROM_c Where States_c + Fulfilled')
B.
SELECT iD FROM Contact WHERE id NOT IN (SELECT id From order_c WHERE_c = Fulfilled')
Answers
B.
SELECT iD FROM Contact WHERE id NOT IN (SELECT id From order_c WHERE_c = Fulfilled')
C.
SELECT Contact_c FROM Order_c Where Status_c <> ;Fulfilled'
Answers
C.
SELECT Contact_c FROM Order_c Where Status_c <> ;Fulfilled'
D.
SELECT id FROM Contact WHERE id NOT IN (SELECT Contact _c FROM order_c Where Status_c = fulfilled')
Answers
D.
SELECT id FROM Contact WHERE id NOT IN (SELECT Contact _c FROM order_c Where Status_c = fulfilled')
Suggested answer: D
asked 23/09/2024
Trevore Agee
25 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first