开发者

Checking for Blank Date field in Salesforce

开发者 https://www.devze.com 2023-02-28 12:11 出处:网络
How do I check if 开发者_如何转开发a field is Blank in Salesforce using SOQL. ThanksSOQL has support for NULL values, so you should be able to query as you do with regular SQL. For example:

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号