How do I check if a field is Blank in Salesforce using SOQL.
Thanks
SOQL has support for NULL
values, so you should be able to query as you do with regular SQL. For example:
SELECT column
FROM table
WHERE date_field = NULL
Notice the use of = NULL
instead of IS NULL
as you would find in SQL.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With