0

第 1893 行的错误 1062 (23000):键 'UNQ_CAT_PRD_ENTT_DTIME_ENTT_ID_ATTR_ID_STORE_ID' 的重复条目 '179-81-0'

可能您遇到了与我类似的问题。如果我取值 '179-81-0'

我确定 179 是产品 ID,但不确定其他 -81-0。此外,在其他线程中,建议从表中删除该行,但不知道 100% 我在做什么,只是删除将是愚蠢的行为行。我需要知道它到底是什么。

4

1 回答 1

2

This key is defined by table catalog_product_entity_datetime as follows:

UNIQUE KEY `UNQ_CAT_PRD_ENTT_DTIME_ENTT_ID_ATTR_ID_STORE_ID` (
    `entity_id`,
    `attribute_id`,
    `store_id`
)

Hence, 179-81-0 means:

  • catalog_product_entity.entity_id = 179
  • eav.attribute.attribute_id = 81
  • core_store.store_id = 0
于 2012-09-24T15:35:49.513 回答