SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  MIN(
    IF(
      prices.percentage_discount = 0, 
      prices.price, 
      prices.price - (
        prices.price * prices.percentage_discount
      )/ 100
    )
  ) as price, 
  products.product_type, 
  products.parent_product_id, 
  products.rf_stop_update_price, 
  products.rf_stop_update_amount, 
  products.rf_stop_update_status 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_categories.storefront_id IN (0, 1) 
WHERE 
  1 
  AND cscart_categories.category_id IN (
    7211, 7212, 7214, 7282, 7320, 7321, 7346, 
    7347
  ) 
  AND companies.status IN ('A') 
  AND products.company_id IN (2, 8, 9, 10, 0) 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND products.parent_product_id = 0 
  AND products.product_type != 'D' 
GROUP BY 
  products.product_id 
ORDER BY 
  price desc, 
  products.product_id ASC 
LIMIT 
  672, 96

Query time 0.02704

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "19.55"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "range",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "rows_examined_per_scan": 8,
              "rows_produced_per_join": 0,
              "filtered": "4.00",
              "cost_info": {
                "read_cost": "3.58",
                "eval_cost": "0.03",
                "prefix_cost": "3.62",
                "data_read_per_join": "855"
              },
              "used_columns": [
                "category_id",
                "usergroup_ids",
                "status",
                "storefront_id"
              ],
              "attached_condition": "((`nuie_scalesta_net`.`cscart_categories`.`category_id` in (7211,7212,7214,7282,7320,7321,7346,7347)) and ((`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids`))) and (`nuie_scalesta_net`.`cscart_categories`.`status` in ('A','H')) and (`nuie_scalesta_net`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "table": {
              "table_name": "companies",
              "access_type": "range",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "rows_examined_per_scan": 5,
              "rows_produced_per_join": 0,
              "filtered": "14.29",
              "using_join_buffer": "hash join",
              "cost_info": {
                "read_cost": "0.70",
                "eval_cost": "0.02",
                "prefix_cost": "4.34",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ],
              "attached_condition": "((`nuie_scalesta_net`.`companies`.`status` = 'A') and (`nuie_scalesta_net`.`companies`.`company_id` in (2,8,9,10,0)))"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "nuie_scalesta_net.cscart_categories.category_id"
              ],
              "rows_examined_per_scan": 117,
              "rows_produced_per_join": 26,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.07",
                "eval_cost": "2.69",
                "prefix_cost": "7.10",
                "data_read_per_join": "430"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "age_verification",
                "status",
                "idx_parent_product_id",
                "my_supplier_id",
                "supplier_access_time",
                "products_rf_product_code_index",
                "products_rf_manufacturer_code_index"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "nuie_scalesta_net.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "6.72",
                "eval_cost": "0.13",
                "prefix_cost": "16.51",
                "data_read_per_join": "6K"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "usergroup_ids",
                "parent_product_id",
                "rf_stop_update_price",
                "rf_stop_update_amount",
                "rf_stop_update_status"
              ],
              "attached_condition": "((`nuie_scalesta_net`.`products`.`company_id` = `nuie_scalesta_net`.`companies`.`company_id`) and (`nuie_scalesta_net`.`products`.`parent_product_id` = 0) and ((`nuie_scalesta_net`.`products`.`usergroup_ids` = '') or (0 <> find_in_set(0,`nuie_scalesta_net`.`products`.`usergroup_ids`)) or (0 <> find_in_set(1,`nuie_scalesta_net`.`products`.`usergroup_ids`))) and (`nuie_scalesta_net`.`products`.`status` = 'A') and (`nuie_scalesta_net`.`products`.`product_type` <> 'D'))"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "nuie_scalesta_net.products_categories.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.34",
                "eval_cost": "0.13",
                "prefix_cost": "16.98",
                "data_read_per_join": "5K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product"
              ]
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "usergroup",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "nuie_scalesta_net.products_categories.product_id"
              ],
              "rows_examined_per_scan": 16,
              "rows_produced_per_join": 2,
              "filtered": "9.92",
              "cost_info": {
                "read_cost": "0.34",
                "eval_cost": "0.22",
                "prefix_cost": "19.55",
                "data_read_per_join": "53"
              },
              "used_columns": [
                "product_id",
                "price",
                "percentage_discount",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`nuie_scalesta_net`.`prices`.`lower_limit` = 1) and (`nuie_scalesta_net`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name price product_type parent_product_id rf_stop_update_price rf_stop_update_amount rf_stop_update_status
87640 Merit Wall Hung 1 Door Vanity Unit 500mm Roxor 144.17000000 P 0 N N N
87876 Mayford Round Ceramic 1 Tap Hole Basin 750mm Roxor 144.17000000 P 0 N N N
88506 Furniture Minimalist Slimline Ceramic Basin 1 Tap Hole 500mm Roxor 144.17000000 P 0 N N N
88507 Furniture Minimalist Slimline Ceramic Basin 1 Tap Hole 600mm Roxor 144.17000000 P 0 N N N
88510 Furniture Mid-Edge Ceramic Basin 1 Tap Hole 500mm Roxor 144.17000000 P 0 N N N
87987 Bliss Square Cistern & Fittings Roxor 141.67000000 P 0 N N N
90828 Core 600mm Thin Edge Basin 1TH Roxor 141.67000000 P 0 N N N
87632 Merit Wall Hung 1 Door Vanity Unit 500mm Roxor 137.50000000 P 0 N N N
88561 Fusion Wall Hung 1 Door Vanity Unit - Compact 400mm Roxor 135.83000000 P 0 N N N
87637 Merit Wall Hung 1 Door Vanity Unit - Slimline 500mm Roxor 133.33000000 P 0 N N N
90827 Core 500mm Thin Edge Basin 1TH Roxor 133.33000000 P 0 N N N
87938 Chancery Large Basin 1 Tap Hole Roxor 131.67000000 P 0 N N N
87941 Chancery Large Basin 2 Tap Hole Roxor 131.67000000 P 0 N N N
87997 Provost Cistern Roxor 131.67000000 P 0 N N N
88026 Ivo Close Coupled Cistern Roxor 130.83000000 P 0 N N N
87781 Components Colour Match Worktop (605mm x 390mm x 18mm), 1200mm Roxor 130.00000000 P 0 N N N
87882 Mayford Square Ceramic 1 Tap Hole Basin 650mm Roxor 129.17000000 P 0 N N N
87988 Bliss Square 600mm Basin 1 Tap Hole Roxor 129.17000000 P 0 N N N
88047 Carlton High Level Cistern (Including Fittings) Roxor 129.17000000 P 0 N N N
88048 Richmond High Level Cistern B (Including Fittings) Roxor 129.17000000 P 0 N N N
88050 Carlton Toilet Cistern with Chrome Lever & Fitting Roxor 121.67000000 P 0 N N N
88051 Richmond Toilet Cistern B Ceramic Lever Fittings Roxor 121.67000000 P 0 N N N
88052 Richmond Wall Hung 2 Tap Hole Basin 595mm Roxor 121.67000000 P 0 N N N
88053 Richmond Wall Hung 1 Tap Hole Basin 595mm Roxor 121.67000000 P 0 N N N
88054 Richmond Wall Hung 3 Tap Hole Basin 595mm Roxor 121.67000000 P 0 N N N
87990 Bliss Square 520mm Basin 1 Tap Hole Roxor 118.33000000 P 0 N N N
87961 Ambrose 500mm Basin 1 Tap Hole Roxor 117.50000000 P 0 N N N
87875 Mayford Round Ceramic 1 Tap Hole Basin 650mm Roxor 115.83000000 P 0 N N N
87937 Chancery Cistern Roxor 115.83000000 P 0 N N N
87950 Lawton Curved Cistern Roxor 115.00000000 P 0 N N N
87959 Ambrose 450mm Basin 1 Tap Hole Roxor 115.00000000 P 0 N N N
88798 Fusion Fitted Decorative End Panel Roxor 114.17000000 P 0 N N N
90826 Core 400mm Thin Edge Basin 1TH Roxor 113.33000000 P 0 N N N
87952 Lawton New Cistern Roxor 112.50000000 P 0 N N N
88004 Harmony Cistern & Fittings Roxor 112.50000000 P 0 N N N
87998 Provost 420mm Small Basin 1 Tap Hole Roxor 110.00000000 P 0 N N N
88000 Provost Medium 520mm Basin 1 Tap Hole Roxor 110.00000000 P 0 N N N
87881 Mayford Square Ceramic 1 Tap Hole Basin 550mm Roxor 106.67000000 P 0 N N N
88031 Legend Large Basin 2 Tap Hole Roxor 106.67000000 P 0 N N N
87948 Provost Short Projection Cistern Roxor 102.50000000 P 0 N N N
88702 Fusion Fitted Decorative End Panel Roxor 101.67000000 P 0 N N N
88749 Fusion Fitted Decorative End Panel Roxor 101.67000000 P 0 N N N
87945 Asselby 600mm Medium Basin 1 Tap Hole Roxor 100.83000000 P 0 N N N
87942 Chancery Small Cloakroom Basin 2 Tap Hole Roxor 95.83000000 P 0 N N N
87964 550mm Basin 1TH Roxor 95.83000000 P 0 N N N
88029 Legend Cistern Including Chrome Handle Roxor 95.00000000 P 0 N N N
88018 Ivo Large Basin 1 Tap Hole Roxor 93.33000000 P 0 N N N
88021 Ivo 550 Basin 2 Tap Hole Roxor 93.33000000 P 0 N N N
88799 Fusion Fitted Plinth 2000mm Roxor 92.50000000 P 0 N N N
88006 Harmony 500mm Basin 1 Tap Hole Roxor 87.50000000 P 0 N N N
88013 Melbourne Large Basin 1 Tap Hole Roxor 87.50000000 P 0 N N N
88015 Melbourne Large Basin 2 Tap Hole Roxor 87.50000000 P 0 N N N
87972 545mm Basin 1TH Roxor 86.67000000 P 0 N N N
88703 Fusion Fitted Plinth 2000mm Roxor 83.33000000 P 0 N N N
88750 Fusion Fitted Plinth 2000mm Roxor 83.33000000 P 0 N N N
87944 Asselby Small Cloakroom Basin 1 Tap Hole Roxor 80.00000000 P 0 N N N
88595 Fusion Fitted Decorative End Panel Roxor 80.00000000 P 0 N N N
88154 Lawton 560mm Basin 1 Tap Hole Roxor 77.50000000 P 0 N N N
87874 Mayford Round Ceramic 1 Tap Hole Basin 550mm Roxor 75.00000000 P 0 N N N
87783 Components Colour Match Worktop (605mm x 390mm x 18mm), 800mm Roxor 74.17000000 P 0 N N N
87880 Mayford Square Ceramic 1 Tap Hole Basin 450mm Roxor 74.17000000 P 0 N N N
87873 Mayford Round Ceramic 1 Tap Hole Basin 450mm Roxor 69.17000000 P 0 N N N
88797 Fusion Fitted Plinth 1250mm Roxor 68.33000000 P 0 N N N
87782 Components Colour Match Worktop (605mm x 390mm x 18mm), 600mm Roxor 65.00000000 P 0 N N N
88701 Fusion Fitted Plinth 1250mm Roxor 64.17000000 P 0 N N N
88748 Fusion Fitted Plinth 1250mm Roxor 64.17000000 P 0 N N N
88596 Fusion Fitted Plinth 2000mm Roxor 61.67000000 P 0 N N N
88594 Fusion Fitted Plinth 1250mm Roxor 42.50000000 P 0 N N N
92893 BAST9060E Roxor 0.00000000 P 0 N N N
92894 BAST9080E Roxor 0.00000000 P 0 N N N
93002 CBM033 Roxor 0.00000000 P 0 N N N
93003 CBM035 Roxor 0.00000000 P 0 N N N
93004 CBM507 Roxor 0.00000000 P 0 N N N
93005 CBM517 Roxor 0.00000000 P 0 N N N
93006 CBM537 Roxor 0.00000000 P 0 N N N
93007 CBM603 Roxor 0.00000000 P 0 N N N
93008 CBM605 Roxor 0.00000000 P 0 N N N
93009 CBM607 Roxor 0.00000000 P 0 N N N
93010 CBM613 Roxor 0.00000000 P 0 N N N
93011 CBM615 Roxor 0.00000000 P 0 N N N
93012 CBM617 Roxor 0.00000000 P 0 N N N
93013 CBM633 Roxor 0.00000000 P 0 N N N
93014 CBM635 Roxor 0.00000000 P 0 N N N
93015 CBM637 Roxor 0.00000000 P 0 N N N
93341 FFB502 Roxor 0.00000000 P 0 N N N
93342 FFB503 Roxor 0.00000000 P 0 N N N
93343 FFB505 Roxor 0.00000000 P 0 N N N
93344 FFB512 Roxor 0.00000000 P 0 N N N
93345 FFB513 Roxor 0.00000000 P 0 N N N
93346 FFB515 Roxor 0.00000000 P 0 N N N
93347 FFB532 Roxor 0.00000000 P 0 N N N
93348 FFB533 Roxor 0.00000000 P 0 N N N
93349 FFB535 Roxor 0.00000000 P 0 N N N
93350 FFB603 Roxor 0.00000000 P 0 N N N
93351 FFB605 Roxor 0.00000000 P 0 N N N
93352 FFB613 Roxor 0.00000000 P 0 N N N