Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
hi
Is there any problem using (== null) or (!= null) ??
Thanks
Ankit Arora
Blog | Facebook | Blog Page
Hi ShravanKumar,
ISNULL are used in the salesforce formula functions to check whether the field contain any value or not.
But in APEX instead of ISNULL, we can use null.
for ex:
select id, Name from account where Name = null;
I hope this will helpful for you
Is there any problem using (== null) or (!= null) ??
Thanks
Ankit Arora
Blog | Facebook | Blog Page
Hi ShravanKumar,
ISNULL are used in the salesforce formula functions to check whether the field contain any value or not.
But in APEX instead of ISNULL, we can use null.
for ex:
select id, Name from account where Name = null;
I hope this will helpful for you