服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > ecshop教程 >

去除ecshop商品重复属性sql命令

时间:2015-03-14 14:06来源:未知 作者:最模板 点击:
采用ecshop助理以及后台批量导入功能,很容易引起商品属性值混乱,如果属性值重,以下方法可以很好的解决值唯一问题 在数据库中执行以下语句: delete a from `ecs_goods_attr` a left join(
采用ecshop助理以及后台批量导入功能,很容易引起商品属性值混乱,如果属性值重,以下方法可以很好的解决值唯一问题
去除ecshop商品重复属性sql命令
在数据库中执行以下语句:
 
delete a  
from `ecs_goods_attr` a   
left join(select `goods_attr_id`,`attr_id` from `ecs_goods_attr` group by goods_id,attr_value) b  
on a.`goods_attr_id` = b.`goods_attr_id`  
and a.`attr_id` = b.`attr_id`  
where b.`goods_attr_id` is null AND b.`attr_id` is null;  
 
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------