gpt4 book ai didi

mysql - Magento:根据价格更改类别中的产品位置

转载 作者:行者123 更新时间:2023-11-29 20:48:18 25 4
gpt4 key购买 nike

我有一位客户希望将所有没有价格的产品显示在所有有价格的产品后面。在这种情况下,我会将产品位置更改为 999。但是他们有超过 3,000 个产品,手动完成需要花费几个小时。

有没有办法通过 MySQL 更新它?我必须连接两个我知道的表。 catalog_category_productcatalog_product_entity_decimal 我相信是的。

现在我知道 catalog_category_product 有一个名为 product_id 的字段,而 catalog_product_entity_decimal 有一个名为 entity_id 的字段,它们本质上是同样的事情。

我认为必须有一种方法以某种方式连接它们每个人才能实现这一点。

编辑:是的,我知道有一个排序依据可以做到这一点,但他们不想将最高价格到最低价格显示为默认值。他们希望能够在第一次折叠时放置他们想要的元素。

最佳答案

1。在进行此类操作之前一定要进行数据库备份

2。用它来检查你的结果是否正确:

SELECT *
FROM `catalog_category_product` AS `cpe`
INNER JOIN (
SELECT `e`.`entity_id`
FROM `catalog_product_entity` AS `e`
INNER JOIN `eav_attribute` AS `ea` ON `ea`.`attribute_code` = 'price'
INNER JOIN `catalog_product_entity_decimal` AS `at_price` ON (`at_price`.`entity_id` = `e`.`entity_id`) AND (`at_price`.`attribute_id` = `ea`.`attribute_id`)
WHERE ((at_price.value = '0') OR (((at_price.value = 'price') OR (at_price.value = '1'))))
) AS `result` ON cpe.product_id = result.entity_id;

3。这是为了更新位置值:

UPDATE `catalog_category_product` AS `cpe`
INNER JOIN (
SELECT `e`.`entity_id`
FROM `catalog_product_entity` AS `e`
INNER JOIN `eav_attribute` AS `ea` ON `ea`.`attribute_code` = 'price'
INNER JOIN `catalog_product_entity_decimal` AS `at_price` ON (`at_price`.`entity_id` = `e`.`entity_id`) AND (`at_price`.`attribute_id` = `ea`.`attribute_id`)

WHERE ((at_price.value = '0') OR (((at_price.value = 'price') OR (at_price.value = '1'))))
) AS `result` ON cpe.product_id = result.entity_id
SET `cpe`.`position` = 999;

4。请注意,此代码不适用于多商店。

5。使用它需要您自担风险:)

关于mysql - Magento:根据价格更改类别中的产品位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38270290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com