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 (
    7346, 7345, 7349, 7347, 7348, 7344, 8028, 
    8032, 7915, 9103, 7920, 7919, 7924, 
    8042, 7921, 7922, 7923, 8030, 8039, 
    8035, 9104, 8036
  ) 
  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.00089

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "15.41"
    },
    "grouping_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "cscart_product_prices",
        "access_type": "range",
        "possible_keys": [
          "usergroup",
          "product_id",
          "lower_limit",
          "usergroup_id"
        ],
        "key": "product_id",
        "used_key_parts": [
          "product_id"
        ],
        "key_length": "3",
        "rows_examined_per_scan": 22,
        "rows_produced_per_join": 4,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (7346,7345,7349,7347,7348,7344,8028,8032,7915,9103,7920,7919,7924,8042,7921,7922,7923,8030,8039,8035,9104,8036))",
        "cost_info": {
          "read_cost": "14.97",
          "eval_cost": "0.44",
          "prefix_cost": "15.41",
          "data_read_per_join": "105"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`lower_limit` = 1) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
7344 80250.00000000
7345 76500.00000000
7346 83500.00000000
7347 90500.00000000
7348 88750.00000000
7349 107250.00000000
7915 160000.00000000
7919 160000.00000000
7920 160000.00000000
7921 160000.00000000
7922 173000.00000000
7923 177750.00000000
7924 160000.00000000
8028 164500.00000000
8030 160000.00000000
8032 213250.00000000
8035 196250.00000000
8036 173000.00000000
8039 173000.00000000
8042 164500.00000000
9103 91500.00000000
9104 104000.00000000