Changes between Version 3 and Version 4 of WikiStart/Analytics


Ignore:
Timestamp:
03/23/25 22:43:22 (2 months ago)
Author:
203206
Comment:

mk1

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Analytics

    v3 v4  
    5050}}}
    5151
     52
     53== Трансакции по валута, подредени по време
     54{{{
     55SELECT
     56    tm.s_account_id AS sender_id,
     57        a_s.username AS sender_username,
     58        tm.r_account_id AS receiver_id,
     59        a_r.username AS receiver_username,
     60    tm.t_id,
     61        t.timestamp,
     62        t.amount,
     63        tm.currency
     64   
     65FROM
     66    transferred_money tm
     67JOIN
     68    account a_s ON tm.s_account_id = a_s.id
     69JOIN
     70    account a_r ON tm.r_account_id = a_r.id
     71JOIN
     72    "transaction" t ON tm.t_id = t.id
     73WHERE currency='EUR'
     74ORDER BY timestamp;
     75
     76}}}
     77
     78
     79