SELECT 
  prices.product_id, 
  prices.lower_limit, 
  usergroup_id, 
  prices.percentage_discount, 
  IF(
    prices.percentage_discount = 0, 
    prices.price, 
    prices.price - (
      prices.price * prices.percentage_discount
    )/ 100
  ) as price 
FROM 
  cscart_ult_product_prices prices 
WHERE 
  prices.product_id = 8364 
  AND prices.company_id = 1 
  AND lower_limit > 1 
  AND prices.usergroup_id IN (0, 0, 1) 
ORDER BY 
  lower_limit

Query time 0.00097

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE prices ref usergroup,product_id,company_id,lower_limit,usergroup_id product_id 3 const 2 Using where; Using filesort