Прескочи към главното съдържание

IN

в List of Functions
Списък с автори
Публикувани: 25.06.2019 г.|Последно обновено: 3.11.2022 г.

As well as the expressions referenced in our guides  you can use the IN function in DPQL.

The IN operator allows you to specify multiple values in the WHERE clause - essentially it's a shorthand for multiple 'OR' arguments.

A common example of where this might be used is when querying statuses.

You might want to count all the open ticket in your helpdesk.

In Deskpro though open tickets can fall under one of three statuses  - awaiting agent, awaiting user and pending.

Using ORCopy link to Using OR to clipboard

You could run the below:

SELECT DPQL_COUNT() FROM tickets WHERE tickets.status = 'awaiting_agent' OR tickets.status = 'awaiting_user' OR tickets.status = 'pending'
copy

this would output the correct data but is a bit longwinded.

Using INCopy link to Using IN to clipboard

An easier way to do it though is to use the IN operator:

SELECT DPQL_COUNT() FROM tickets WHERE tickets.status IN('awating agent', 'awaiting_user', 'pending')
copy
ПолезноНе беше полезно
следваща страницаUsing the LIKE Operator and Wildcards
предишна страницаDPQL_PERCENT

Моля, логнете се или се регистрирайте, за да оставите коментар.