You need to sign in to do that
Don't have an account?
Sree Salesforce
I need a query , when i query i want to get rectly created records , i.e c3 and c6 contacts only i need.
How shall write query.
Could please hel me
need a Query Problem:- I have two accounts , account related to three contacts . When i query i need recently created records
I need a query , when i query i want to get rectly created records , i.e c3 and c6 contacts only i need.
How shall write query.
Could please hel me
Use below query.
select id,name,(Select id,createddate from contacts order by createddate desc limit 1 ) from account
kindly mark it as an answer if that resolves your query.