SELECT
netting_product_prices.product_id,
COALESCE(
netting_master_products_storefront_min_price.price,
MIN(
IF(
netting_product_prices.percentage_discount = 0,
netting_product_prices.price,
netting_product_prices.price - (
netting_product_prices.price * netting_product_prices.percentage_discount
)/ 100
)
)
) AS price
FROM
netting_product_prices
LEFT JOIN netting_master_products_storefront_min_price ON netting_master_products_storefront_min_price.product_id = netting_product_prices.product_id
AND netting_master_products_storefront_min_price.storefront_id = 1
WHERE
netting_product_prices.product_id IN (
531, 570, 592, 569, 707, 757, 761, 834
)
AND netting_product_prices.lower_limit = 1
AND netting_product_prices.usergroup_id IN (0, 1)
GROUP BY
netting_product_prices.product_id