SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  products.product_type, 
  products.parent_product_id 
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 (
    293, 294, 295, 296, 297, 298, 299, 300, 
    301, 302, 303, 304, 305, 306
  ) 
  AND companies.status IN ('A') 
  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 
  product asc, 
  products.product_id ASC 
LIMIT 
  0, 96

Query time 0.00335

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "32.27"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "ALL",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "rows_examined_per_scan": 98,
              "rows_produced_per_join": 0,
              "filtered": "1.02",
              "cost_info": {
                "read_cost": "23.08",
                "eval_cost": "0.20",
                "prefix_cost": "23.28",
                "data_read_per_join": "3K"
              },
              "used_columns": [
                "category_id",
                "storefront_id",
                "usergroup_ids",
                "status"
              ],
              "attached_condition": "((`danishecarter_latest`.`cscart_categories`.`category_id` in (293,294,295,296,297,298,299,300,301,302,303,304,305,306)) and ((`danishecarter_latest`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`danishecarter_latest`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`danishecarter_latest`.`cscart_categories`.`usergroup_ids`)) and (`danishecarter_latest`.`cscart_categories`.`status` in ('A','H')) and (`danishecarter_latest`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "table": {
              "table_name": "companies",
              "access_type": "ALL",
              "possible_keys": [
                "PRIMARY"
              ],
              "rows_examined_per_scan": 4,
              "rows_produced_per_join": 0,
              "filtered": "25.00",
              "using_join_buffer": "Block Nested Loop",
              "cost_info": {
                "read_cost": "2.76",
                "eval_cost": "0.20",
                "prefix_cost": "26.24",
                "data_read_per_join": "7K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ],
              "attached_condition": "(`danishecarter_latest`.`companies`.`status` = 'A')"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "danishecarter_latest.cscart_categories.category_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 2,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "1.07",
                "eval_cost": "0.60",
                "prefix_cost": "27.91",
                "data_read_per_join": "47"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "status",
                "idx_parent_product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "danishecarter_latest.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "8.83",
              "cost_info": {
                "read_cost": "3.00",
                "eval_cost": "0.05",
                "prefix_cost": "31.51",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "usergroup_ids",
                "parent_product_id"
              ],
              "attached_condition": "((`danishecarter_latest`.`products`.`company_id` = `danishecarter_latest`.`companies`.`company_id`) and (`danishecarter_latest`.`products`.`parent_product_id` = 0) and ((`danishecarter_latest`.`products`.`usergroup_ids` = '') or find_in_set(0,`danishecarter_latest`.`products`.`usergroup_ids`) or find_in_set(1,`danishecarter_latest`.`products`.`usergroup_ids`)) and (`danishecarter_latest`.`products`.`status` = 'A') and (`danishecarter_latest`.`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": [
                "danishecarter_latest.products_categories.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.26",
                "eval_cost": "0.05",
                "prefix_cost": "31.82",
                "data_read_per_join": "1K"
              },
              "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": [
                "danishecarter_latest.products_categories.product_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 0,
              "filtered": "98.10",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.29",
                "eval_cost": "0.16",
                "prefix_cost": "32.27",
                "data_read_per_join": "18"
              },
              "used_columns": [
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`danishecarter_latest`.`prices`.`lower_limit` = 1) and (`danishecarter_latest`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name product_type parent_product_id
423 ABARTH New Test Product demo test mobilede P 0
424 ABARTH New Test Product demo test mobilede P 0
455 AHLMANN CF 370, THERMO-KING T-1200R, TAIL LIFT demo test mobilede P 0
433 AIXAM Crossline Premium demo test mobilede P 0
495 ALPINA 3.0 Allrad Touring demo test mobilede P 0
453 ANDERE BG CA1 demo test mobilede P 0
468 ANDERE HFR SX20, AXLES 10t, EXPANDABLE demo test mobilede P 0
467 ANDERE MTDK LINKTRAILER L75, AXLES 10t, EXPANDABLE demo test mobilede P 0
418 ANDERE Schröder ST 11/25 P4-13,5 Test Top Truck P 0
420 ASTON MARTIN DB9 Volante demo test mobilede P 0
421 ASTON MARTIN New Test Product demo test mobilede P 0
422 ASTON MARTIN New Test Product demo test mobilede P 0
406 CHEREAU Carrier Vector 1850 MT, BPW, Side Door ACME Corp P 0
407 CHEREAU Chereau Carrier Vector 1850 MT, BPW, ACME Corp P 0
437 CITROEN 35 Heavy L4H2 BlueHDi 140 / PDC Tempomat Klim... demo test mobilede P 0
494 DACIA Duster Den neuen Life 1.0 TSI jetzt bestellen!! demo test mobilede P 0
454 DAF CF 370, THERMO-KING T-1200R, TAIL LIFT demo test mobilede P 0
442 DAF FA CF75.310, THERMO-KING T-1000R, TAIL LIFT demo test mobilede P 0
426 DAF XF 480 Space Cab demo test mobilede P 0
429 DAF XF 480 Space Cab demo test mobilede P 0
428 DAF XF 480 Super Space Cab demo test mobilede P 0
410 DAF XF 480 Supr Space Cap Test Top Truck P 0
438 DETHLEFFS CVD 590 C Automatik*AHK*Markise* demo test mobilede P 0
440 DETHLEFFS CVD 590 C Automatik*AHK*Markise* demo test mobilede P 0
443 DROEGMOELLER CF 370, THERMO-KING T-1200R, TAIL LIFT demo test mobilede P 0
463 FLIEGL ZWP 180, BDF, AXLES 9t demo test mobilede P 0
460 FLIEGL ZWP 180, BDF, AXLES 9t, PNEU 80% demo test mobilede P 0
450 FORD F-MAX 500, EURO 6, NAVIGATION demo test mobilede P 0
446 GINAF X4343 LS, BDF, 8X6, + BETONMIX BODY demo test mobilede P 0
447 GINAF X4343 LS, BDF, 8X6, + BETONMIX BODY demo test mobilede P 0
476 IVECO EUROCARGO 120E25, LENGTH OF LOAD SPACE 9,6m!!! demo test mobilede P 0
457 IVECO EUROCARGO 150E25,LOAD SPACE LENGHT 9,5m!! EURO 6 demo test mobilede P 0
482 IVECO EUROCARGO 75-210,TAIL LIFT,ONLY 58,822 KM demo test mobilede P 0
483 IVECO EUROCARGO 75-210,TAIL LIFT,ONLY 58,822 KM demo test mobilede P 0
472 KEL-BERG E36S2, AXLES 10t,EXPANDABLE,SAF AXLES demo test mobilede P 0
441 KIA Sportage 1.6 GDI LED NAVI SHZ KLIMAAUT. 17"AL... demo test mobilede P 0
405 KOEGEL SAF, Lift Achse, Roof Safety Airbag, German ACME Corp P 0
403 KRONE SD Test Top Truck P 0
485 KRONE SD 04, MULTILOCK, LIFTING AXLE demo test mobilede P 0
492 KRONE SD 04, MULTILOCK, LIFTING AXLE, SAF AXLES demo test mobilede P 0
479 KRONE SD COOL LINER, THERMO KING SLXE SPECTRUM demo test mobilede P 0
480 KRONE SD COOL LINER, THERMO KING SLXE SPECTRUM demo test mobilede P 0
413 KRONE SDP-01 SD Test Top Truck P 0
401 MAN loins coach R7 (R8 R9) Test Top Truck P 0
449 MAN TGL 12.250 4X2 BL demo test mobilede P 0
474 MAN TGX 18.440, HYDRAULIC,RETARDER, ADR demo test mobilede P 0
473 MAN TGX 18.440, HYDRAULICS,RETARDER, ADR demo test mobilede P 0
448 MAN TGX 18.480 4x2 BLS, EURO 6 demo test mobilede P 0
493 MAN TGX 18.480, EURO 6, RETARDER, AIR SUSPENSION demo test mobilede P 0
409 MAN TGX 18.500 Retarder Test Top Truck P 0
404 MERCEDES-BENZ 316 Test Top Truck P 0
456 MERCEDES-BENZ Actros 1848 BigSpace, EURO 6, NAVIGATION demo test mobilede P 0
469 MERCEDES-BENZ Actros 2542, 6x2, EURO 6 + trailer SVAN CHTP202 demo test mobilede P 0
431 MERCEDES-BENZ Actros 5 1845 BigSpace demo test mobilede P 0
466 MERCEDES-BENZ Actros GigaSpace 1848, EURO 6, NAVIGATION demo test mobilede P 0
402 MERCEDES-BENZ City 65 neu moter 23.000 km(516) Test Top Truck P 0
439 RENAULT D 18.320 WIDE, EURO 6 + trailer BG CA1 (2014) demo test mobilede P 0
484 RENAULT MAGNUM 440 DXi demo test mobilede P 0
470 RENAULT T520 COMFORT, EURO 6 demo test mobilede P 0
490 RENAULT T520 COMFORT, EURO 6 demo test mobilede P 0
451 RENAULT T520 COMFORT, EURO 6, LOWDECK demo test mobilede P 0
491 RENAULT T520, EURO 6 demo test mobilede P 0
411 SCANIA R 500 V8 Test Top Truck P 0
486 SCANIA R 500 V8, 6X2, BRDR. OLSEN LIMITED EDITION demo test mobilede P 0
458 SCANIA R410, BDF, 6x2, EURO 6, SECONDARY AIR CONDITION demo test mobilede P 0
459 SCANIA R410, BDF, 6x2, EURO 6, SECONDARY AIR CONDITION demo test mobilede P 0
461 SCANIA R410, BDF, 6x2, EURO 6, SECONDARY AIR CONDITION demo test mobilede P 0
462 SCANIA R410, BDF, 6x2, EURO 6, SECONDARY AIR CONDITION demo test mobilede P 0
471 SCANIA R500, RETARDER, EURO 6, NAVIGATION demo test mobilede P 0
425 SCHMITZ FP 60 ThermoKing SLXi 300 demo test mobilede P 0
427 SCHMITZ FP 60 ThermoKing SLXi 300 demo test mobilede P 0
416 SCHMITZ SCB ,S3B,04 VLN, Thermoking SLXi 300 , 66 palett Test Top Truck P 0
419 SCHMITZ SCB S3T 06VLN SCS24/L Test Top Truck P 0
464 SCHMITZ SCB*S3B , THERMO KING SLXi 300,ELECTRIC SOCKET demo test mobilede P 0
465 SCHMITZ SCB*S3B , THERMO KING SLXi 300,ELECTRIC SOCKET demo test mobilede P 0
432 SCHMITZ SCS24/L demo test mobilede P 0
444 SCHMITZ SKO 24/L - 13.4 FP 60 COOL, CARRIER VECTOR 1950M demo test mobilede P 0
445 SCHMITZ SKO 24/L - 13.4 FP 60 COOL, CARRIER VECTOR 1950M demo test mobilede P 0
477 SCHMITZ SKO 24/L - 13.4 FP 60 COOL, CARRIER VECTOR 1950M demo test mobilede P 0
478 SCHMITZ SKO 24/L - 13.4 FP 60 COOL, CARRIER VECTOR 1950M demo test mobilede P 0
487 VANHOOL 3B0068, EXPANDABLE, FOR ALL CONTAINER TYPES demo test mobilede P 0
488 VANHOOL 3B0068, EXPANDABLE, FOR ALL CONTAINER TYPES demo test mobilede P 0
434 VOLVO Containerhaken Volvo, Liebherr, Komatsu,... demo test mobilede P 0
435 VOLVO Containerhaken Volvo, Liebherr, Komatsu,... demo test mobilede P 0
515 VOLVO Erdbauschaufel SWE mitL70 / L90 C/D/E/F/G/H demo test mobilede P 0
481 VOLVO FH 460 4X2, VEB +, EURO 6, I-PARK COOL demo test mobilede P 0
489 VOLVO FH 460 4X2, VEB+, EURO 6, HYDRAULIC demo test mobilede P 0
415 VOLVO FH 460 ADR Test Top Truck P 0
430 VOLVO FH 460 Globetrotter XL i-Save demo test mobilede P 0
414 VOLVO FH 500 Test Top Truck P 0
475 VOLVO FH 500, HYDRAULICS, I PARK-COOL, VEB+ demo test mobilede P 0
452 VOLVO FH 520, RETARDER, 6x4, PALFINGER EPSILON 120Z96 demo test mobilede P 0
412 VOLVO FH 540 Pusher Test Top Truck P 0
417 VOLVO FM 420 6x2 Test Top Truck P 0
503 VOLVO Gabeln L50/60/70/90 demo test mobilede P 0
514 VOLVO L120E demo test mobilede P 0