mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 18:32:48 +00:00
13 lines
468 B
SQL
13 lines
468 B
SQL
|
|
SELECT
|
|
SUM(application_chat_record.message_tokens + application_chat_record.answer_tokens) as "token_usage",
|
|
COALESCE(application_chat.asker->>'username', '游客') as "username"
|
|
FROM
|
|
application_chat_record application_chat_record
|
|
LEFT JOIN application_chat application_chat ON application_chat."id" = application_chat_record.chat_id
|
|
${default_sql}
|
|
GROUP BY
|
|
COALESCE(application_chat.asker->>'username', '游客')
|
|
ORDER BY
|
|
"token_usage" DESC
|