我需要帮助替换MySQL中的值字段。
我使用自动脚本将优惠券上传到Magento,但字段“simple_action
”导入的值为“by_percent
”而不是“cart_fixed
”。有人可以向我显示一个查询,将值“by_percent
”替换为“cart_fixed
”吗?
在:
salesrule
magento
simple_action
by_percent
cart_fixed
答案 0 :(得分:0)
这是一个执行此操作的mysql查询:
UPDATE salesrule
SET simple_action = 'cart_fixed'
WHERE simple_action = 'by_percent'