Changes between Version 8 and Version 9 of WikiStart/Analytics


Ignore:
Timestamp:
03/30/25 21:31:10 (2 months ago)
Author:
203206
Comment:

db

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Analytics

    v8 v9  
    182182LIMIT 3;
    183183}}}
     184
     185
     186== Најактивните корисници во последните 30 дена
     187{{{
     188WITH recent_activity AS (
     189    SELECT account_id, COUNT(*) AS activity_count
     190    FROM "transaction"
     191    WHERE timestamp >= NOW() - INTERVAL '30 days'
     192    GROUP BY account_id
     193)
     194
     195SELECT a.id AS account_id,
     196       a.username,
     197       a.email,
     198       COALESCE(ra.activity_count, 0) AS recent_transactions
     199FROM account a
     200LEFT JOIN recent_activity ra ON a.id = ra.account_id
     201ORDER BY recent_transactions DESC
     202LIMIT :top_n;
     203
     204
     205
     206}}}