Changes between Version 4 and Version 5 of WikiStart/Analytics


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

db3

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Analytics

    v4 v5  
    7676}}}
    7777
     78== Максимум, минимум и просечен износ на сума по трансакција во одредена валута
    7879
     80{{{
    7981
     82SELECT
     83        max(t.amount) as maximum,
     84        avg(t.amount) as "average",
     85        min(t.amount) as minimum
     86   
     87FROM
     88    transferred_money tm
     89JOIN
     90    account a_s ON tm.s_account_id = a_s.id
     91JOIN
     92    account a_r ON tm.r_account_id = a_r.id
     93JOIN
     94    "transaction" t ON tm.t_id = t.id
     95WHERE currency='USD';
     96}}}
     97