Magento查询所有产品的Group Price, 返回 SKU和 价格

来源:互联网 发布:什么软件下歌不要钱 编辑:程序博客网 时间:2024/04/28 15:56
/*查询所有产品的group_price*/  SELECT t2.sku,t3.`value` from catalog_product_entity_decimal AS t1LEFT JOIN catalog_product_entity AS t2  ON t2.entity_id = t1.entity_idLEFT JOIN catalog_product_entity_group_price t3 ON t3.entity_id = t1.entity_idWHERE attribute_id=75

0 0