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 (7343) 
  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 
  0, 96

Query time 0.01740

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "354.93"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "const",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.00",
                "eval_cost": "0.10",
                "prefix_cost": "0.00",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "category_id",
                "usergroup_ids",
                "status",
                "storefront_id"
              ]
            }
          },
          {
            "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": 1,
              "filtered": "33.33",
              "cost_info": {
                "read_cost": "2.10",
                "eval_cost": "0.17",
                "prefix_cost": "2.26",
                "data_read_per_join": "10K"
              },
              "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": [
                "const"
              ],
              "rows_examined_per_scan": 461,
              "rows_produced_per_join": 768,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.70",
                "eval_cost": "76.83",
                "prefix_cost": "79.79",
                "data_read_per_join": "12K"
              },
              "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": 38,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "115.25",
                "eval_cost": "3.84",
                "prefix_cost": "271.88",
                "data_read_per_join": "184K"
              },
              "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": 38,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "5.76",
                "eval_cost": "3.84",
                "prefix_cost": "281.48",
                "data_read_per_join": "146K"
              },
              "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": 63,
              "filtered": "9.92",
              "cost_info": {
                "read_cost": "9.78",
                "eval_cost": "6.32",
                "prefix_cost": "354.93",
                "data_read_per_join": "1K"
              },
              "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
91550 Kurv Plinth for Kurv Bath - White Only Roxor 454.17000000 P 0 N N N
91619 Senator White Bun Feet For Senator Bath Roxor 454.17000000 P 0 N N N
91788 Bun Feet For Senator Bath - Powder Blue Roxor 454.17000000 P 0 N N N
91789 Bun Feet For Senator Bath - Light Fawn Roxor 454.17000000 P 0 N N N
91790 Bun Feet For Senator Bath - Gun Metal Roxor 454.17000000 P 0 N N N
91791 Bun Feet For Senator Bath - Industrial Grey Roxor 454.17000000 P 0 N N N
91792 Bun Feet For Senator Bath - Khaki Green Roxor 454.17000000 P 0 N N N
91793 Bun Feet For Senator Bath - Mushroom Roxor 454.17000000 P 0 N N N
91794 Bun Feet For Senator Bath - Powder Grey Roxor 454.17000000 P 0 N N N
91795 Bun Feet For Senator Bath - Satin Rose Roxor 454.17000000 P 0 N N N
92501 Extended Bath Filler Roxor 433.33000000 P 0 N N N
92502 Extended Bath Filler Roxor 433.33000000 P 0 N N N
92503 Extended Bath Filler Roxor 433.33000000 P 0 N N N
92504 Extended Bath Filler Roxor 433.33000000 P 0 N N N
92505 Extended Bath Filler Roxor 433.33000000 P 0 N N N
92506 Extended Bath Filler Roxor 433.33000000 P 0 N N N
92507 Extended Bath Filler Roxor 433.33000000 P 0 N N N
92192 Bath Wastes Plug & Chain Exposed Ext Bath Waste Roxor 413.33000000 P 0 N N N
92193 Bath Wastes Plug & Chain Exposed Ext Bath Waste Roxor 413.33000000 P 0 N N N
92194 Bath Wastes Plug & Chain Exposed Ext Bath Waste Roxor 413.33000000 P 0 N N N
92195 Bath Wastes Plug & Chain Exposed Ext Bath Waste Roxor 413.33000000 P 0 N N N
92196 Bath Wastes Plug & Chain Exposed Ext Bath Waste Roxor 413.33000000 P 0 N N N
92204 Bath Wastes Push Down Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92205 Bath Wastes Push Down Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92206 Bath Wastes Push Down Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92207 Bath Wastes Push Down Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92208 Bath Wastes Push Down Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92209 Bath Wastes Push Down Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92442 Plug & Chain Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92443 Plug & Chain Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92448 Push Down Exposed Bath Waste Roxor 413.33000000 P 0 N N N
92147 Standpipes Traditional Cast Freestanding Bath Legs - 660mm x 40mm Roxor 412.50000000 P 0 N N N
92148 Standpipes Traditional Cast Freestanding Bath Legs - 660mm x 40mm Roxor 412.50000000 P 0 N N N
92149 Standpipes Traditional Cast Freestanding Bath Legs - 660mm x 40mm Roxor 412.50000000 P 0 N N N
92349 Standpipes 660x40 Freestanding Legs Roxor 412.50000000 P 0 N N N
92350 Standpipes 660x40 Freestanding Legs Roxor 412.50000000 P 0 N N N
92351 Standpipes 660x40 Freestanding Legs Roxor 412.50000000 P 0 N N N
92352 Standpipes 660x40 Freestanding Legs Roxor 412.50000000 P 0 N N N
85580 Standpipes Roxor 361.67000000 P 0 N N N
92151 Standpipes Traditional Bath Legs with Adjustable Shrouds Roxor 335.83000000 P 0 N N N
92152 Standpipes Traditional Bath Legs with Adjustable Shrouds Roxor 335.83000000 P 0 N N N
92153 Standpipes Traditional Bath Legs with Adjustable Shrouds Roxor 335.83000000 P 0 N N N
92353 Bath Legs with Adjustable Shrouds Roxor 335.83000000 P 0 N N N
92354 Bath Legs with Adjustable Shrouds Roxor 335.83000000 P 0 N N N
92355 Bath Legs with Adjustable Shrouds Roxor 335.83000000 P 0 N N N
92356 Bath Legs with Adjustable Shrouds Roxor 335.83000000 P 0 N N N
91893 Victrion 3 Tier Towel Rack Roxor 318.33000000 P 0 N N N
91894 Victrion 3 Tier Towel Rack Roxor 318.33000000 P 0 N N N
91895 Victrion 3 Tier Towel Rack Roxor 318.33000000 P 0 N N N
92337 Victrion 3 Tier Towel Rack Roxor 318.33000000 P 0 N N N
92338 Victrion 3 Tier Towel Rack Roxor 318.33000000 P 0 N N N
92339 Victrion 3 Tier Towel Rack Roxor 318.33000000 P 0 N N N
92340 Victrion 3 Tier Towel Rack Roxor 318.33000000 P 0 N N N
91839 Plinth Only For 1800mm Acrylic Boat Bath - White Roxor 288.33000000 P 0 N N N
92450 Push Down Freestanding Bath Waste Roxor 269.17000000 P 0 N N N
92451 Push Down Freestanding Bath Waste Roxor 269.17000000 P 0 N N N
92452 Push Down Freestanding Bath Waste Roxor 269.17000000 P 0 N N N
92453 Push Down Freestanding Bath Waste Roxor 269.17000000 P 0 N N N
92454 Push Down Freestanding Bath Waste Roxor 269.17000000 P 0 N N N
92455 Push Down Freestanding Bath Waste Roxor 269.17000000 P 0 N N N
92456 Push Down Freestanding Bath Waste Roxor 269.17000000 P 0 N N N
91838 Plinth Only For 1700mm Acrylic Boat Bath - White Roxor 266.67000000 P 0 N N N
91837 Plinth Only For 1580mm Acrylic Boat Bath - White Roxor 244.17000000 P 0 N N N
92500 Extended Bath Filler Roxor 239.17000000 P 0 N N N
85039 Standpipes 660mmx40mm Freestanding Legs Roxor 225.83000000 P 0 N N N
87370 Leg Set M1 For Traditional Freestanding Baths Deacon Roxor 220.83000000 P 0 N N N
89609 Leg Set C For Traditional Freestanding Baths Roxor 220.83000000 P 0 N N N
89610 Leg Set C2 For Traditional Freestanding Baths Roxor 220.83000000 P 0 N N N
92198 Bath Wastes Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92199 Bath Wastes Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92200 Bath Wastes Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92201 Bath Wastes Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92202 Bath Wastes Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92444 Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92445 Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92446 Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92447 Push Down Concealed Bath Waste Roxor 201.67000000 P 0 N N N
92146 Standpipes Traditional Cast Freestanding Bath Legs - 660mm x 40mm Roxor 192.50000000 P 0 N N N
92203 Bath Wastes Push Down Exposed Bath Waste Roxor 181.67000000 P 0 N N N
92449 Push Down Freestanding Bath Waste Roxor 181.67000000 P 0 N N N
86857 Standpipes Roxor 171.67000000 P 0 N N N
85037 Standpipes Roxor 165.00000000 P 0 N N N
91870 Victrion Double Towel Rail Roxor 163.33000000 P 0 N N N
91869 Victrion Double Towel Rail Roxor 155.00000000 P 0 N N N
91871 Victrion Double Towel Rail Roxor 155.00000000 P 0 N N N
91872 Victrion Double Towel Rail Roxor 155.00000000 P 0 N N N
91873 Victrion Double Towel Rail Roxor 155.00000000 P 0 N N N
91874 Victrion Double Towel Rail Roxor 155.00000000 P 0 N N N
91875 Victrion Double Towel Rail Roxor 155.00000000 P 0 N N N
85038 Standpipes Roxor 154.17000000 P 0 N N N
92458 Exposed Bath Trap With Adapter (40/42mm) Roxor 151.67000000 P 0 N N N
92459 Exposed Bath Trap With Adapter (40/42mm) Roxor 151.67000000 P 0 N N N
92460 Exposed Bath Trap With Adapter (40/42mm) Roxor 151.67000000 P 0 N N N
92461 Exposed Bath Trap With Adapter (40/42mm) Roxor 151.67000000 P 0 N N N
92462 Exposed Bath Trap With Adapter (40/42mm) Roxor 151.67000000 P 0 N N N
92463 Exposed Bath Trap With Adapter (40/42mm) Roxor 151.67000000 P 0 N N N