SELECT 
  pf.feature_id, 
  pf.company_id, 
  pf.feature_type, 
  pf.parent_id, 
  pf.display_on_product, 
  pf.display_on_catalog, 
  pf.display_on_header, 
  cscart_product_features_descriptions.description, 
  cscart_product_features_descriptions.internal_name, 
  cscart_product_features_descriptions.lang_code, 
  cscart_product_features_descriptions.prefix, 
  cscart_product_features_descriptions.suffix, 
  pf.categories_path, 
  cscart_product_features_descriptions.full_description, 
  pf.status, 
  pf.comparison, 
  pf.position, 
  pf.purpose, 
  pf.feature_style, 
  pf.filter_style, 
  pf.feature_code, 
  pf.timestamp, 
  pf.updated_timestamp, 
  pf_groups.position AS group_position, 
  cscart_product_features_values.value, 
  cscart_product_features_values.variant_id, 
  cscart_product_features_values.value_int, 
  abt_filters.filter_id 
FROM 
  cscart_product_features AS pf 
  LEFT JOIN cscart_product_features AS pf_groups ON pf.parent_id = pf_groups.feature_id 
  LEFT JOIN cscart_product_features_descriptions AS pf_groups_description ON pf_groups_description.feature_id = pf.parent_id 
  AND pf_groups_description.lang_code = 'en' 
  LEFT JOIN cscart_product_features_descriptions ON cscart_product_features_descriptions.feature_id = pf.feature_id 
  AND cscart_product_features_descriptions.lang_code = 'en' 
  INNER JOIN cscart_product_features_values ON cscart_product_features_values.feature_id = pf.feature_id 
  AND cscart_product_features_values.product_id = 2494 
  AND cscart_product_features_values.lang_code = 'en' 
  LEFT JOIN cscart_product_filters AS abt_filters ON abt_filters.feature_id = pf.feature_id 
  AND abt_filters.company_id = pf.company_id 
WHERE 
  1 = 1 
  AND pf.feature_type != 'G' 
  AND pf.status IN ('A') 
  AND (
    pf_groups.status IN ('A') 
    OR pf_groups.status IS NULL
  ) 
  AND pf.company_id IN (0, 1) 
  AND pf.display_on_product = 'Y' 
  AND (
    pf.categories_path = '' 
    OR ISNULL(pf.categories_path) 
    OR FIND_IN_SET(166, pf.categories_path) 
    OR FIND_IN_SET(234, pf.categories_path) 
    OR FIND_IN_SET(236, pf.categories_path)
  ) 
GROUP BY 
  pf.feature_id 
ORDER BY 
  group_position asc, 
  pf_groups_description.description asc, 
  pf_groups.feature_id asc, 
  pf.position asc, 
  cscart_product_features_descriptions.description asc, 
  pf.feature_id asc

Query time 0.00488

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "21.15"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_product_features_values",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "fl",
                "lang_code",
                "product_id",
                "fpl",
                "idx_product_feature_variant_id"
              ],
              "key": "idx_product_feature_variant_id",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 44,
              "rows_produced_per_join": 14,
              "filtered": "32.52",
              "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_features_values`.`lang_code` = 'en')",
              "cost_info": {
                "read_cost": "11.00",
                "eval_cost": "1.43",
                "prefix_cost": "15.40",
                "data_read_per_join": "11K"
              },
              "used_columns": [
                "feature_id",
                "product_id",
                "variant_id",
                "value",
                "value_int",
                "lang_code"
              ]
            }
          },
          {
            "table": {
              "table_name": "pf",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "status",
                "company_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id"
              ],
              "key_length": "3",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.cscart_product_features_values.feature_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "8.46",
              "cost_info": {
                "read_cost": "3.58",
                "eval_cost": "0.12",
                "prefix_cost": "20.41",
                "data_read_per_join": "532"
              },
              "used_columns": [
                "feature_id",
                "feature_code",
                "company_id",
                "purpose",
                "feature_style",
                "filter_style",
                "feature_type",
                "categories_path",
                "parent_id",
                "display_on_product",
                "display_on_catalog",
                "display_on_header",
                "status",
                "position",
                "comparison",
                "timestamp",
                "updated_timestamp"
              ],
              "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`pf`.`feature_type` <> 'G') and (`softwarepirmam_hewadelivard_cscart_4`.`pf`.`status` = 'A') and (`softwarepirmam_hewadelivard_cscart_4`.`pf`.`company_id` in (0,1)) and (`softwarepirmam_hewadelivard_cscart_4`.`pf`.`display_on_product` = 'Y') and ((`softwarepirmam_hewadelivard_cscart_4`.`pf`.`categories_path` = '') or (`softwarepirmam_hewadelivard_cscart_4`.`pf`.`categories_path` is null) or (0 <> find_in_set(166,`softwarepirmam_hewadelivard_cscart_4`.`pf`.`categories_path`)) or (0 <> find_in_set(234,`softwarepirmam_hewadelivard_cscart_4`.`pf`.`categories_path`)) or (0 <> find_in_set(236,`softwarepirmam_hewadelivard_cscart_4`.`pf`.`categories_path`))))"
            }
          },
          {
            "table": {
              "table_name": "pf_groups",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id"
              ],
              "key_length": "3",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.pf.parent_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "19.00",
              "cost_info": {
                "read_cost": "0.30",
                "eval_cost": "0.02",
                "prefix_cost": "20.83",
                "data_read_per_join": "101"
              },
              "used_columns": [
                "feature_id",
                "status",
                "position"
              ],
              "attached_condition": "<if>(found_match(pf_groups), ((`softwarepirmam_hewadelivard_cscart_4`.`pf_groups`.`status` = 'A') or (`softwarepirmam_hewadelivard_cscart_4`.`pf_groups`.`status` is null)), true)"
            }
          },
          {
            "table": {
              "table_name": "pf_groups_description",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.pf.parent_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.06",
                "eval_cost": "0.02",
                "prefix_cost": "20.91",
                "data_read_per_join": "535"
              },
              "used_columns": [
                "feature_id",
                "description",
                "lang_code"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_product_features_descriptions",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.cscart_product_features_values.feature_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.06",
                "eval_cost": "0.02",
                "prefix_cost": "20.99",
                "data_read_per_join": "535"
              },
              "used_columns": [
                "feature_id",
                "description",
                "internal_name",
                "full_description",
                "prefix",
                "suffix",
                "lang_code"
              ]
            }
          },
          {
            "table": {
              "table_name": "abt_filters",
              "access_type": "ref",
              "possible_keys": [
                "feature_id",
                "company_id"
              ],
              "key": "company_id",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "5",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.pf.company_id"
              ],
              "rows_examined_per_scan": 2,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.11",
                "eval_cost": "0.05",
                "prefix_cost": "21.15",
                "data_read_per_join": "33"
              },
              "used_columns": [
                "filter_id",
                "company_id",
                "feature_id"
              ],
              "attached_condition": "<if>(is_not_null_compl(abt_filters), (`softwarepirmam_hewadelivard_cscart_4`.`abt_filters`.`feature_id` = `softwarepirmam_hewadelivard_cscart_4`.`cscart_product_features_values`.`feature_id`), true)"
            }
          }
        ]
      }
    }
  }
}

Result

feature_id company_id feature_type parent_id display_on_product display_on_catalog display_on_header description internal_name lang_code prefix suffix categories_path full_description status comparison position purpose feature_style filter_style feature_code timestamp updated_timestamp group_position value variant_id value_int filter_id
657 0 E 0 Y Y Y Brand Brand en A N 0 organize_catalog brand checkbox Brand 1744099751 1771059933 1666 314
640 0 S 0 Y Y N Operating System Operating System en A N 10 group_variation_catalog_item dropdown checkbox 1744020768 1761829541 1629
649 0 S 0 Y Y N Display Display en A N 20 group_variation_catalog_item dropdown_images checkbox 1744021192 1768762138 1536 321
641 0 S 0 Y Y N Aspect Ratio Aspect Ratio en A N 30 group_variation_catalog_item dropdown checkbox 1744020792 1745155926 1648
650 0 S 0 Y Y N Refresh Rate Refresh Rate en A N 40 group_variation_catalog_item dropdown checkbox 1744021218 1745155934 1541 322
642 0 S 0 Y Y N Resolution Resolution en A N 50 group_variation_catalog_item dropdown checkbox 1744020815 1760438035 2911
651 0 S 0 Y Y N Processor Processor en A N 60 group_variation_catalog_item dropdown_labels checkbox 1744021234 1764508031 2912 328
643 0 S 0 Y Y N Ram Ram en A N 70 group_variation_catalog_item dropdown_labels checkbox 1744020844 1763967742 1587 319
652 0 S 0 Y Y N GPU GPU en A N 80 group_variation_catalog_item dropdown_labels checkbox 1744021279 1748519740 2913
644 0 S 0 Y Y N SIM SIM en A N 90 group_variation_catalog_item dropdown checkbox 1744020863 1758700039 1798
653 0 S 0 Y Y N Battery Battery en A N 100 group_variation_catalog_item dropdown checkbox 1744021303 1752063723 2107
645 0 S 0 Y Y N Ports Ports en A N 110 group_variation_catalog_item dropdown checkbox 1744020895 1748243830 2898
655 0 S 0 Y Y N Rear Camera Rear Camera en A N 140 group_variation_catalog_item dropdown checkbox 1744021423 1745157634 1582
647 0 S 0 Y Y N Front Camera Front Camera en A N 150 group_variation_catalog_item dropdown checkbox 1744020956 1745157664 1574
656 0 S 0 Y Y N Color Color en A N 160 group_variation_catalog_item dropdown_images color 1744021496 1769962294 2907 318
648 0 S 0 Y Y N Storage Storage en A N 170 group_variation_catalog_item dropdown_labels checkbox 1744020979 1763969064 1563 320