Changes between Version 2 and Version 3 of WikiStart/Analytics


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

c1

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Analytics

    v2 v3  
    2525}}}
    2626
    27 ==
     27== Трансакции до одреден датум и време
     28{{{
     29SELECT
     30    tm.s_account_id AS sender_id,
     31        a_s.username AS sender_username,
     32        tm.r_account_id AS receiver_id,
     33        a_r.username AS receiver_username,
     34    tm.t_id,
     35        t.timestamp,
     36        t.amount
     37   
     38FROM
     39    transferred_money tm
     40JOIN
     41    account a_s ON tm.s_account_id = a_s.id
     42JOIN
     43    account a_r ON tm.r_account_id = a_r.id
     44JOIN
     45    "transaction" t ON tm.t_id = t.id
     46WHERE
     47      timestamp<'2025-03-23 20:30:00.000000';
    2848
     49
     50}}}
     51