我正在将 magento 1.3 中的产品导出到 magento 1.6,在 magento 1.3 的 .csv 中它有一个 category_ids 字段,而在 magento 1.6 的 .csv 中有一个 _category 字段。我只想拥有与 .csv magento 1.6 相同的 magento 1.3 的 .csv 属性字段,以便我可以将 magento 1.3 中的 .csv 导入 magento 1.6。
我现在的问题是如何在我的 mysql 中查询以从 magento 1.3 中的 category_ids 获取类别名称?
我查看了 magento 1.3 中的表格,但那里没有类别名称。
在 magento 1.3 的 .csv 中,它有这个表
category_ids
------------
154
154
154
59
63,88
63
61
我尝试这个 sql 查询,但没有任何返回..
SELECT catalog_category_entity_varchar.value FROM catalog_category_entity_varchar WHERE value_id = 154;
有人知道我的案子吗?提前致谢 ...