Changes between Version 2 and Version 3 of WikiStart/Analytics
- Timestamp:
- 03/23/25 22:04:25 (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart/Analytics
v2 v3 25 25 }}} 26 26 27 == 27 == Трансакции до одреден датум и време 28 {{{ 29 SELECT 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 38 FROM 39 transferred_money tm 40 JOIN 41 account a_s ON tm.s_account_id = a_s.id 42 JOIN 43 account a_r ON tm.r_account_id = a_r.id 44 JOIN 45 "transaction" t ON tm.t_id = t.id 46 WHERE 47 timestamp<'2025-03-23 20:30:00.000000'; 28 48 49 50 }}} 51