Salesforce Certified Platform Developer II Practice Test 2
Question 1 / 40
Which two relationship queries use the proper syntax? Choose 2 answers
SELECT Name, (SELECT LastName FROM Contacts__r) FROM Account
SELECT Name, (SELECT LastName FROM Contacts) FROM Account
SELECT Id, Name, Account __r.Name FROM Contact WHERE Account r.Industry = 'Media'
SELECT Id, Name, Account.Name FROM Contact WHERE Account.Industry = 'Media'