在银行存款和取款记录表中,求最近3条范围内的累计值。

select prc_date,prc_amt,sum(prc_amt) over(order by prc_date rows 2 preceding) as onhand_amt
 from accounts;