鉴于我具有此数据库结构。

表:观看次数

uid      steamID         sessionid       watchcount            items
1       234234234        1232432            634                 0


观看次数更新后,我想自动更改列项目。将监视计数除以60后,请对该值取底,以使其显示为整数。像这样:

watchcount            items
634                   10

最佳答案

干得好:

create trigger update_items
before update on watchcount
for each row
set new.items = floor(new.watchcount/60);


doc

关于mysql - MySQL触发器通过除以数字然后对其求和,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24472803/

10-12 02:48