メインコンテンツへスキップ

DPQL_PERCENT

List of Functionsで
作成者一覧
公開日: 2019年7月18日|最終更新日: 2022年11月3日

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 %.

参考になった役に立たない
次のページIN
前のページAVG

コメントを投稿するには、ログインまたは登録が必要です。