Changes between Version 2 and Version 3 of WikiStart/Scenario/withdraw
- Timestamp:
- 03/31/25 11:56:12 (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart/Scenario/withdraw
v2 v3 1 1 == Повлекување на с-ва 2 2 1. Корисникот го кликнува копчето Withdraw и ја внесува сумата што сака да ја повлече од своето салдо. 3 4 {{{ 5 select a1_0.id,a1_0.balance,a1_0.email,a1_0.password,a1_0.username 6 from account a1_0 where a1_0.username=? 7 8 update account set balance=?,email=?,password=?,username=? where id=? 9 10 insert into transaction (account_id,amount,currency,timestamp,type) 11 values (?,?,?,?,?) 12 }}}