improve sql for top keys

This commit is contained in:
Bryan Stitt 2023-08-07 15:35:10 -07:00
parent 0b97ee5696
commit 4f0493f69e

View File

@ -1,7 +1,7 @@
SELECT SUM(`sum_credits_used`) as sum, rpc_accounting_v2.rpc_key_id, rpc_key.user_id, user.email
SELECT SUM(`sum_credits_used`) as sum, rpc_accounting_v2.rpc_key_id, rpc_key.user_id, concat("0x", hex(user.address)) as address, user.email
FROM `rpc_accounting_v2`
JOIN rpc_key ON rpc_accounting_v2.rpc_key_id=rpc_key.id
JOIN user on rpc_key.user_id=user.id
GROUP BY `rpc_key_id`
ORDER BY sum DESC
LIMIT 100
LIMIT 100