Changes between Version 2 and Version 3 of WikiStart/Scenario/withdraw


Ignore:
Timestamp:
03/31/25 11:56:12 (2 months ago)
Author:
203206
Comment:

c1

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Scenario/withdraw

    v2 v3  
    11== Повлекување на с-ва
    221. Корисникот го кликнува копчето Withdraw и ја внесува сумата што сака да ја повлече од своето салдо.
     3
     4{{{
     5select a1_0.id,a1_0.balance,a1_0.email,a1_0.password,a1_0.username
     6from account a1_0 where a1_0.username=?
     7
     8update account set balance=?,email=?,password=?,username=? where id=?
     9
     10insert into transaction (account_id,amount,currency,timestamp,type)
     11values (?,?,?,?,?)
     12}}}