Zum Hauptinhalt springen

DPQL_PERCENT

in List of Functions
Autorenliste
veröffentlicht: 18. Juli 2019|Letzte Aktualisierung: 3. Nov. 2022

DPQL_PERCENT allows us to check the percentage of a group that meets a specified condition.

ExampleCopy link to Example to clipboard

We'd like to check the Percentage of tickets that have been submitted to our helpdesk that have been resolved.

To do this we simply run the query below

SELECT DPQL_PERCENT(tickets.status IN ('resolved', 'archived')) AS 'Percentage of tickets resolved' FROM tickets
copy

The query finds the total number of statuses in 'tickets' and then calculates the percentage of these that match the condition specified 'tickets.status IN ('resolved', 'archived')'

image.png

In this instance 29.11 %.

HilfreichNicht hilfreich
nächste SeiteIN
vorherige SeiteAVG

Bitte loggen Sie sich ein oder melden Sie sich an, um einen Kommentar zu hinterlassen.