gpt4 book ai didi

MySQL 查询从 magento 数据库类别中检索新添加的产品

转载 作者:行者123 更新时间:2023-11-29 14:31:12 26 4
gpt4 key购买 nike

我创建了一个自定义下拉属性,其值为“yes”或“on”。现在我的问题是我们如何编写一个 MySQL 查询来按类别检索新添加的产品,这些产品通过使用 MySQL 数据库的自定义属性检查为"is",以及我们必须在哪里放置该查询?在这里,我想在主页类别上显示这些新添加的产品。

最佳答案

您想在 Magento 中执行此操作吗?请改用集合。

$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('*'); // Or only the attributes that you need
$collection->addAttributeToFilter('your_attribute', array('eq' => '1'));

foreach ($collection as $product) {
echo $product->getId();
}

关于MySQL 查询从 magento 数据库类别中检索新添加的产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10006390/

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