activities
latest
false
- 概述
- 添加 Integration Service 活动
- HTTP 请求活动
- 常见问题
- 配置连接向导
- Using the WHERE clause in List All Records activities
- UiPath 生成式 AI 活动
- Act! 365
- ActiveCampaign
- Adobe Acrobat Sign
- Adobe PDF 服务
- Amazon Bedrock
- Amazon Connect
- Amazon Polly
- 亚马逊 SES
- Amazon Transcribe
- Anthropic Claude
- Asana
- AWeber
- Azure AI 文档智能
- Azure Maps
- BambooHR
- Box
- Brevo
- Calendly
- Campaign Monitor
- Cisco Webex Teams
- Citrix ShareFile
- 清除位
- Confluence Cloud
- Constant Contact
- Coupa
- Customer.io
- Datadog
- 深度查找
- Deputy
- Discord - 预览
- DocuSign
- 水滴
- Dropbox
- Dropbox Business
- Egnyte
- Eventbrite
- 汇率
- Expensify
- Facebook
- Freshbooks
- Freshdesk
- Freshsales
- Freshservice
- 获取响应
- GitHub
- Google Maps
- Google 语音转文本
- Google 文本转语音
- Google Vertex
- Google Vision
- GoToWebinar
- Greenhouse
- Hootsuite
- HTTP Webhook
- HubSpot CRM
- HubSpot Marketing
- Icertis
- iContact
- Insightly CRM
- Intercom
- Jina.ai
- Jira
- Keap
- Klaviyo
- LinkedIn
- Mailchimp
- Mailjet
- MailerLite
- Mailgun
- Marketo
- Microsoft Azure OpenAI
- Microsoft Dynamics CRM
- Microsoft Sentiment
- Microsoft Teams
- Microsoft Translator
- Microsoft Vision
- Miro
- 奥克塔
- OpenAI
- 符合 OpenAI V1 的 LLM
- Oracle Eloqua
- Oracle NetSuite
- PagerDuty
- Paypal
- PDFMonkey
- Perplexity
- Pinecone
- Pipedrive
- QuickBooks Online
- Quip
- Salesforce
- Salesforce Marketing Cloud
- SAP BAPI
- SAP Cloud for Customer
- SAP Concur
- SAP OData
- SendGrid
- ServiceNow
- Shopify
- Slack
- SmartRecruiters
- Smartsheet
- Snowflake
- Stripe
- Sugar Enterprise
- Sugar Professional
- Sugar Sell
- Sugar Serve
- 探戈卡
- Todoist
- Trello
- Twilio
- IBM WatsonX
- WhatsApp Business
- WOO COMMERCE
- 可行
- Workday
- Workday REST
- X(以前称为 Twitter)
- Xero
- Youtube
- Zendesk
- Zoho Campaigns
- Zoho Desk
- Zoho Mail
- 缩放
- Zoom 信息
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Integration Service 活动
上次更新日期 2025年4月7日
Using the WHERE clause in List All Records activities
UiPath uses a generic pattern for activities such as List All Records in Integration Service activities. In List All Records, a
Where
clause is available to allow for more advanced filtering.
备注:
Not all List All Records activities include a
Where
property. Availability depends on each connector.
Older versions of Integration Service activity packages may also include List Record activities. List Record has been deprecated and replaced with List All Records. We recommend you always use the latest package version available.
The
Where
clause, or the CEQL search expression, provides a standard way to search across records. The Where
clause specifies what to search and what objects to return in our result set.
A
Where
clause has three components:
- The lefthand side (LHS) element of the condition
- The operator
- The righthand side (RHS) element of the condition
-
Add a List All Records activity to your workflow.
-
Select the object from the dropdown menu.
-
Use the Manage Properties option to view any additional fields available for the selected object. These may include:
- Max records - Defines the maximum number of records to return.
- Order by or Sort by- The order in which results should be sorted.
- “位置” - 典型 SQL 查询中不带
WHERE
关键字的 CEQL 搜索表达式或where 子句。
You can use the following operators inside a
Where
clause:
AND
-TRUE
if all the conditions separated areTRUE
OR
-TRUE
if any of the conditions separated areTRUE
=
- Equal to!=
- Not equal to<
- Less than>
- Greater than<=
- Less than or equal to>=
- Greater than or equal toLIKE
-TRUE
if the operand matches a patternIN
-TRUE
if the operand is equal to one of a list of expressionsIS NULL
-TRUE
if aNULL
value is foundLIMIT
- Limit the number of records to the specified number