Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 SOQL 检查 Salesforce 中的字段是否为空白。
谢谢
SOQL 支持NULL值,因此您应该能够像使用常规 SQL 一样进行查询。例如:
NULL
SELECT column FROM table WHERE date_field = NULL
请注意在 SQL中使用的= NULL而不是。IS NULL
= NULL
IS NULL