Magento 1.9从phpMyAdmin更改基本图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento 1.9从phpMyAdmin更改基本图像相关的知识,希望对你有一定的参考价值。
我需要帮助从phpMyAdmin中的数据库更改基本图像。 进行更改的表是catalog_product_entity_varchar 如图像附件中所示 phymyadmin table 我必须使用attribute_id 78从列值复制相同的字符串 使用attribute_id 77到列值 其中entity_id是相同的。 我需要帮助创建正确的查询 谢谢
答案
像这样的东西应该做的伎俩(尝试前备份,这是一个提示,但我没有尝试):
UPDATE
catalog_product_entity_varchar t1
INNER JOIN catalog_product_entity_varchar t2
ON (t1.entity_id=t2.entity_id
AND t2.attribute_id=78
AND t1.attribute_id = 77)
SET t1.value = t2.value
但是如果您不需要保留属性77,则可以删除所有带有77的条目,然后只删除update catalog_product_entity_varchar set attribute_id = 78 where attribute_id = 77
以上是关于Magento 1.9从phpMyAdmin更改基本图像的主要内容,如果未能解决你的问题,请参考以下文章
在 WAMP 中更改 MySQL 端口号后 PHPMyAdmin 页面错误