Salesforce SOQL 修整字段

Salesforce SOQL Trimming the field

我正在通过 REST API 从 php 调用 SOQL 查询。我正在使用以下 SOQL 查询搜索 phone 号码。我想在 where 子句中 trim mobilephone。我试过 MobilePhone.trim()trim(MobilePhone) 它不工作。我该怎么做?

Select FirstName FROM Contact WHERE  MobilePhone = '04123456789'

谢谢。

无法在 SOQL 的 'where' 条件中使用 'trim' 函数。