使用 SOQL 使用 LIKE statement/keyword 查询身份

Using SOQL to query Identities using LIKE statement/keyword

嗨,我想知道我们是否可以在身份上使用 LIKE 来使用 SOQL 语句,例如:

select Id,Name from Account where Id not LIKE '001W%' limit 10

因此,如果有以这 4 个字符开头的 ID 字符串,我可以跳过它们并获得 10 个不同的字符串。我试过了,但我得到一个异常,表明我有一个 'unexpected token'.

谢谢

根据销售人员文档:

仅字符串字段支持 LIKE 运算符。