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 
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 = 'fr' 
  LEFT JOIN cscart_product_features_descriptions ON cscart_product_features_descriptions.feature_id = pf.feature_id 
  AND cscart_product_features_descriptions.lang_code = 'fr' 
  INNER JOIN cscart_product_features_values ON cscart_product_features_values.feature_id = pf.feature_id 
  AND cscart_product_features_values.product_id = 10852 
  AND cscart_product_features_values.lang_code = 'fr' 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = pf.feature_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_features'
  ) 
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.display_on_product = 'Y' 
  AND (
    pf.categories_path = '' 
    OR ISNULL(pf.categories_path) 
    OR FIND_IN_SET(2, pf.categories_path) 
    OR FIND_IN_SET(50, pf.categories_path) 
    OR FIND_IN_SET(116, pf.categories_path) 
    OR FIND_IN_SET(449, pf.categories_path) 
    OR FIND_IN_SET(492, 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.00130

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "12.91"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "pf",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "status"
              ],
              "key": "status",
              "used_key_parts": [
                "status"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 22,
              "rows_produced_per_join": 1,
              "filtered": "9.00",
              "index_condition": "(`ea201_francemaqu`.`pf`.`status` <=> 'A')",
              "cost_info": {
                "read_cost": "2.40",
                "eval_cost": "0.40",
                "prefix_cost": "6.80",
                "data_read_per_join": "871"
              },
              "used_columns": [
                "feature_id",
                "feature_type",
                "categories_path",
                "parent_id",
                "display_on_product",
                "display_on_catalog",
                "status",
                "position",
                "comparison",
                "company_id",
                "feature_code",
                "display_on_header",
                "purpose",
                "feature_style",
                "filter_style",
                "timestamp",
                "updated_timestamp"
              ],
              "attached_condition": "((`ea201_francemaqu`.`pf`.`feature_type` <> 'G') and (`ea201_francemaqu`.`pf`.`display_on_product` = 'Y') and ((`ea201_francemaqu`.`pf`.`categories_path` = '') or isnull(`ea201_francemaqu`.`pf`.`categories_path`) or find_in_set(2,`ea201_francemaqu`.`pf`.`categories_path`) or find_in_set(50,`ea201_francemaqu`.`pf`.`categories_path`) or find_in_set(116,`ea201_francemaqu`.`pf`.`categories_path`) or find_in_set(449,`ea201_francemaqu`.`pf`.`categories_path`) or find_in_set(492,`ea201_francemaqu`.`pf`.`categories_path`)))"
            }
          },
          {
            "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": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "product_id"
              ],
              "key_length": "6",
              "ref": [
                "ea201_francemaqu.pf.feature_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "index_condition": "(`ea201_francemaqu`.`cscart_product_features_values`.`lang_code` = 'fr')",
              "cost_info": {
                "read_cost": "1.98",
                "eval_cost": "0.40",
                "prefix_cost": "9.18",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "feature_id",
                "product_id",
                "variant_id",
                "value",
                "value_int",
                "lang_code"
              ]
            }
          },
          {
            "table": {
              "table_name": "pf_groups",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id"
              ],
              "key_length": "3",
              "ref": [
                "ea201_francemaqu.pf.parent_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "19.00",
              "cost_info": {
                "read_cost": "1.98",
                "eval_cost": "0.08",
                "prefix_cost": "11.55",
                "data_read_per_join": "165"
              },
              "used_columns": [
                "feature_id",
                "status",
                "position"
              ],
              "attached_condition": "<if>(found_match(pf_groups), ((`ea201_francemaqu`.`pf_groups`.`status` = 'A') or isnull(`ea201_francemaqu`.`pf_groups`.`status`)), 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": [
                "ea201_francemaqu.pf.parent_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.38",
                "eval_cost": "0.08",
                "prefix_cost": "12.00",
                "data_read_per_join": "875"
              },
              "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": [
                "ea201_francemaqu.pf.feature_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.38",
                "eval_cost": "0.08",
                "prefix_cost": "12.45",
                "data_read_per_join": "875"
              },
              "used_columns": [
                "feature_id",
                "description",
                "full_description",
                "prefix",
                "suffix",
                "lang_code",
                "internal_name"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_ult_objects_sharing",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "share_object_id",
                "share_company_id",
                "share_object_type"
              ],
              "key_length": "159",
              "ref": [
                "ea201_francemaqu.pf.feature_id",
                "const",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.38",
                "eval_cost": "0.08",
                "prefix_cost": "12.91",
                "data_read_per_join": "60"
              },
              "used_columns": [
                "share_company_id",
                "share_object_id",
                "share_object_type"
              ],
              "attached_condition": "(`ea201_francemaqu`.`cscart_ult_objects_sharing`.`share_object_id` = `ea201_francemaqu`.`pf`.`feature_id`)"
            }
          }
        ]
      }
    }
  }
}

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
4 1 S 0 Y Y N Echelle Echelle fr A N 1 find_products text checkbox 1622543267 0 28
3 1 S 0 Y Y Y Marque, Brand Marque fr A N 1 find_products text checkbox 1622543267 1718026233 1
31 1 T 0 Y N N Réf Maquette Réf Maquette fr A N 2 describe_product 1622543267 0 03353 3353 0
13 1 T 0 Y Y N Dimensions Dimensions fr A N 3 describe_product 1622543267 0 Longueur: 194 mm Largeur: 89 mm Hauteur: 71 mm 0
16 1 O 0 Y Y N Nombre de pièces Nombre de pièces fr A N 3 find_products number slider 1622543267 0 0 197.00
9 1 E 0 Y N N Age conseillé Age conseillé fr A N 5 organize_catalog brand checkbox 1622543267 0 176
6 1 S 0 Y Y N Niveau de difficulté Niveau de difficulté fr A N 5 find_products text checkbox 1622543267 0 104
10 1 S 0 Y Y N Période Période fr A N 5 find_products text checkbox 1622543267 0 163
14 1 T 0 Y Y N Couleurs conseillées Couleurs conseillées fr <p>Peintures disponibles dans "Articles complémentaires"</p> A N 6 describe_product 1622543267 0 06 09 65 84 91 382 0
12 1 M 0 Y Y N Maquette plastique à peindre et à coller Maquette plastique à peindre et à coller fr A N 6 find_products multiple_checkbox checkbox 1622543267 0 148
8 1 S 0 Y Y N Nationalité Nationalité fr A N 6 find_products text checkbox 1622543267 0 117
15 1 M 0 Y Y N Type Type fr A N 6 find_products multiple_checkbox checkbox 1622543267 1632412503 151
11 1 M 0 Y N N Peintures, Colle Peintures, Colle fr A N 7 find_products multiple_checkbox checkbox 1622543267 0 154
17 1 M 0 Y Y N Attention danger ! Attention danger ! fr <p>Cet article n'est pas un jouet et doit être tenu hors de portée des jeunes enfants.  Privilégier l'utilisation de peintures à l'eau (Aqua) pour les enfants de moins de 14 ans. Les articles de modélisme contiennent de petites pièces. Rappel : les colles, Cements, Dilluants sont des produits dangereux.<br /><img src="http://www.notre-planete.info/medias/images/pictos/exclam.jpg" alt="J'altère la santé ou la couche d'ozone" /><img src="http://www.notre-planete.info/medias/images/pictos/flamme.jpg" alt="Je fais flamber" /><img src="http://www.notre-planete.info/medias/images/pictos/pollut.jpg" alt="Je pollue" /> </p> A N 13 find_products multiple_checkbox checkbox 1622543267 0 173