SELECT 
  cscart_product_prices.product_id, 
  MIN(
    IF(
      cscart_product_prices.percentage_discount = 0, 
      cscart_product_prices.price, 
      cscart_product_prices.price - (
        cscart_product_prices.price * cscart_product_prices.percentage_discount
      )/ 100
    )
  ) AS price 
FROM 
  cscart_product_prices 
WHERE 
  cscart_product_prices.product_id IN (
    2030, 2068, 2071, 2075, 2117, 2118, 2197, 
    2199, 2230, 2239, 2244, 2274, 2277, 
    2299, 2318, 2320
  ) 
  AND cscart_product_prices.lower_limit = 1 
  AND cscart_product_prices.usergroup_id IN (0, 1) 
GROUP BY 
  cscart_product_prices.product_id

Query time 0.00101

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_product_prices",
      "access_type": "range",
      "possible_keys": ["usergroup", "product_id", "lower_limit", "usergroup_id"],
      "key": "product_id",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "rows": 16,
      "filtered": 2.14621067,
      "index_condition": "cscart_product_prices.product_id in (2030,2068,2071,2075,2117,2118,2197,2199,2230,2239,2244,2274,2277,2299,2318,2320)",
      "attached_condition": "cscart_product_prices.lower_limit = 1 and cscart_product_prices.usergroup_id in (0,1)"
    }
  }
}

Result

product_id price
2030 37.4500000000000000
2068 37.4500000000000000
2071 37.4500000000000000
2075 37.4500000000000000
2117 37.4500000000000000
2118 37.4500000000000000
2197 37.4500000000000000
2199 37.4500000000000000
2230 37.4500000000000000
2239 37.4500000000000000
2244 37.4500000000000000
2274 37.4500000000000000
2277 37.4500000000000000
2299 37.4500000000000000
2318 37.4500000000000000
2320 37.4500000000000000