Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何一次将奖励积分添加到所有产品而不是手动添加到每个产品?手动为每个产品添加积分非常耗时,而我想将产品价格的 2% 添加到奖励积分。我怎样才能做到这一点?
您可以轻松地在 phpmyadmin 中执行 sql 查询来更新点。
假设你的表名oc_product和点列名点
UPDATE oc_product SET points = price * 0.02 WHERE price > 0
在执行查询之前备份您的 OC 数据库