2012-09-17 64 views
0

我正在將magento 1.3中的產品導出到magento 1.6,在magento 1.3的.csv中它有一個字段category_ids,在magento 1.6的.csv中有_category字段。我只想要與.csv ma​​gento 1.6相同的magento 1.3的.csv屬性字段相同,以便我可以將magento 1.3中的.csv導入到magento 1.6。category_ids到magento中的類別

我現在的問題是,我如何在我的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; 

做任何有關於我的情況的想法?在此先感謝...

回答

0

我現在得到的查詢,這是它.. 。

SELECT * FROM catalog_category_entity_varchar WHERE entity_id = 40 
0

嘗試這樣

爲了讓所有的類別使用以下查詢:

SELECT * FROM catalog_category_entity_varchar where attribute_id=111; 

你會得到下面的值value_id,entity_type_id,attribute_id,STORE_ID,ENTITY_ID,值。

這裏,entity_id - 類別ID,值是類別名稱。

value_id  entity_type_id  attribute_id  store_id  entity_id  value 
    1    9    111     0   3  'Root Catalog' 
    4    9    111     0   4  'Shirts' 
    7    9    111     0   5  'Shoes' 

,如果你想具體得到的類別名稱,然後您使用以下查詢:

SELECT catalog_category_entity_varchar.value FROM catalog_category_entity_varchar where attribute_id=111 and entity_id=4; 

4-類別編號