I want to calculate interest over millions of record in mysql. So I am using scheduler
create event cal_interest
on every 1 day
do
update
userTable
set interest=(money*rate)/100
My question are:
1. Is it possible millions of record update simultaneously?
2. Any possibility some record updated and some are failure.
3. If it wrong way to calculate interest over multiple record so please suggest me how can do this ?