SELECT 
  v.feature_id, 
  v.value, 
  v.value_int, 
  v.variant_id, 
  f.feature_type, 
  fd.internal_name, 
  fd.description, 
  fd.prefix, 
  fd.suffix, 
  vd.variant, 
  f.parent_id, 
  f.position, 
  gf.position as gposition, 
  f.feature_style as feature_style, 
  f.display_on_header, 
  f.display_on_catalog, 
  f.display_on_product, 
  f.feature_code, 
  f.purpose 
FROM 
  cscart_product_features as f 
  LEFT JOIN cscart_product_features_values as v ON v.feature_id = f.feature_id 
  LEFT JOIN cscart_product_features_descriptions as fd ON fd.feature_id = v.feature_id 
  AND fd.lang_code = 'en' 
  LEFT JOIN cscart_product_feature_variants fv ON fv.variant_id = v.variant_id 
  LEFT JOIN cscart_product_feature_variant_descriptions as vd ON vd.variant_id = fv.variant_id 
  AND vd.lang_code = 'en' 
  LEFT JOIN cscart_product_features as gf ON gf.feature_id = f.parent_id 
  AND gf.feature_type = 'G' 
WHERE 
  f.status IN ('A') 
  AND v.product_id = 31827 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(3073, f.categories_path)
  ) 
  AND IF(
    f.parent_id, 
    (
      SELECT 
        status 
      FROM 
        cscart_product_features as df 
      WHERE 
        df.feature_id = f.parent_id
    ), 
    'A'
  ) IN ('A') 
  AND (
    v.variant_id != 0 
    OR (
      f.feature_type != 'C' 
      AND v.value != ''
    ) 
    OR (f.feature_type = 'C') 
    OR v.value_int != ''
  ) 
  AND v.lang_code = 'en' 
ORDER BY 
  fd.internal_name, 
  fv.position

Query time 0.00152

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "45.21"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "v",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "variant_id",
              "lang_code",
              "product_id",
              "fpl",
              "idx_product_feature_variant_id",
              "fl"
            ],
            "key": "product_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 33,
            "rows_produced_per_join": 16,
            "filtered": "50.00",
            "index_condition": "((`cscart_db`.`v`.`lang_code` = 'en') and (`cscart_db`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "16.92",
              "eval_cost": "1.65",
              "prefix_cost": "20.22",
              "data_read_per_join": "659"
            },
            "used_columns": [
              "feature_id",
              "product_id",
              "variant_id",
              "value",
              "value_int",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "f",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "status"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "cscart_db.v.feature_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 13,
            "filtered": "83.18",
            "cost_info": {
              "read_cost": "4.12",
              "eval_cost": "1.37",
              "prefix_cost": "26.00",
              "data_read_per_join": "6K"
            },
            "used_columns": [
              "feature_id",
              "feature_code",
              "purpose",
              "feature_style",
              "feature_type",
              "categories_path",
              "parent_id",
              "display_on_product",
              "display_on_catalog",
              "display_on_header",
              "status",
              "position"
            ],
            "attached_condition": "((`cscart_db`.`f`.`status` = 'A') and ((`cscart_db`.`f`.`categories_path` = '') or (0 <> find_in_set(3073,`cscart_db`.`f`.`categories_path`))) and (if(`cscart_db`.`f`.`parent_id`,(/* select#2 */ select `cscart_db`.`df`.`status` from `cscart_db`.`cscart_product_features` `df` where (`cscart_db`.`df`.`feature_id` = `cscart_db`.`f`.`parent_id`)),'A') = 'A') and ((`cscart_db`.`v`.`variant_id` <> 0) or ((`cscart_db`.`f`.`feature_type` <> 'C') and (`cscart_db`.`v`.`value` <> '')) or (`cscart_db`.`f`.`feature_type` = 'C') or (`cscart_db`.`v`.`value_int` <> 0)))",
            "attached_subqueries": [
              {
                "dependent": true,
                "cacheable": false,
                "query_block": {
                  "select_id": 2,
                  "cost_info": {
                    "query_cost": "0.35"
                  },
                  "table": {
                    "table_name": "df",
                    "access_type": "eq_ref",
                    "possible_keys": [
                      "PRIMARY"
                    ],
                    "key": "PRIMARY",
                    "used_key_parts": [
                      "feature_id"
                    ],
                    "key_length": "3",
                    "ref": [
                      "cscart_db.f.parent_id"
                    ],
                    "rows_examined_per_scan": 1,
                    "rows_produced_per_join": 1,
                    "filtered": "100.00",
                    "cost_info": {
                      "read_cost": "0.25",
                      "eval_cost": "0.10",
                      "prefix_cost": "0.35",
                      "data_read_per_join": "448"
                    },
                    "used_columns": [
                      "feature_id",
                      "status"
                    ]
                  }
                }
              }
            ]
          }
        },
        {
          "table": {
            "table_name": "fd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "cscart_db.v.feature_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.43",
              "eval_cost": "1.37",
              "prefix_cost": "30.80",
              "data_read_per_join": "31K"
            },
            "used_columns": [
              "feature_id",
              "description",
              "prefix",
              "suffix",
              "lang_code",
              "internal_name"
            ]
          }
        },
        {
          "table": {
            "table_name": "fv",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "variant_feature_idx",
              "idx_var_feat_pos"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id"
            ],
            "key_length": "3",
            "ref": [
              "cscart_db.v.variant_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.43",
              "eval_cost": "1.37",
              "prefix_cost": "35.60",
              "data_read_per_join": "15K"
            },
            "used_columns": [
              "variant_id",
              "position"
            ]
          }
        },
        {
          "table": {
            "table_name": "vd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "cscart_db.fv.variant_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.43",
              "eval_cost": "1.37",
              "prefix_cost": "40.41",
              "data_read_per_join": "102K"
            },
            "used_columns": [
              "variant_id",
              "variant",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "gf",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "cscart_db.f.parent_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.43",
              "eval_cost": "1.37",
              "prefix_cost": "45.21",
              "data_read_per_join": "6K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "position"
            ],
            "attached_condition": "<if>(is_not_null_compl(gf), (`cscart_db`.`gf`.`feature_type` = 'G'), true)"
          }
        }
      ]
    }
  }
}

Result

feature_id value value_int variant_id feature_type internal_name description prefix suffix variant parent_id position gposition feature_style display_on_header display_on_catalog display_on_product feature_code purpose
112 47403 M Benefits Benefits Even Tone 0 2 multiple_checkbox N N N find_products
112 40547 M Benefits Benefits Skin Elasticity 0 2 multiple_checkbox N N N find_products
112 40540 M Benefits Benefits Glow 0 2 multiple_checkbox N N N find_products
141 61541 M Benefits ATB Benefits Lightening 0 0 multiple_checkbox N N Y find_products
62 30341 E Brand Brand Dermatouch 0 1 brand Y N Y organize_catalog
131 5.5 0 T Breadth Breadth cm 129 0 0 text N N Y describe_product
59 20616 M Certifications Certifications Dermatologically Tested 0 90 multiple_checkbox N N Y find_products
19 53923 M Concern Concern Dark Spots/Pigmentation 0 101 multiple_checkbox N N N find_products
63 10348 S Country of Origin Country of Origin India 66 100 0 dropdown N N Y group_catalog_item
69 Jan-25 0 T Expiry or Best Before Date Expiry or Best Before Date 66 5 0 text N N Y describe_product
76 56838 S Expiry or Best Before Month Expiry or Best Before Month 01-06-2025 66 6 0 text N N Y find_products
154 {"modifier":null,"derivative":null,"strength":null} 51619 E Featured Ingredient Featured Ingredient Niacinamide 0 0 full_ingredient N Y N organize_catalog
154 {"modifier":null,"derivative":null,"strength":null} 51613 E Featured Ingredient Featured Ingredient Kojic Acid 0 0 full_ingredient N Y N organize_catalog
61 35793 M Formulation Formulation Foam 0 113 multiple_checkbox N N Y find_products
73 20868 M Good For For Concerns Skin Pigmentation 0 106 multiple_checkbox N N Y find_products
73 23969 M Good For For Concerns Dark Circles & Spots 0 106 multiple_checkbox N N Y find_products
73 41660 M Good For For Concerns Excess Oil 0 106 multiple_checkbox N N Y find_products
132 15 0 T Height Height cm 129 0 0 text N N Y describe_product
37 48112 S Ingredients list Ingredients list Aqua, Stearic Acid, Lauric Acid, Sorbitol, Glycerine, Myristic Acid, Coco Glucoside, Propylene Glycol, Phenoxyethanol (and) Ethylhexyglycerin, Liquorice Extract, Kojic Acid Globules, Sodium PEG-7 Olive Oil Carboxylate, Niacinamide, Glutathione, Sodium Hydroxide, Salicylic Acid, Vitamin E, Triclosan, Lactic Acid, Glycolic Acid, Disodium EDTA, D-Panthenol, Allantoin, Vitamin C, Potassium Hydroxide, Fragrance (IFRA certified allergen free fragrance) 66 40 0 dropdown N N Y group_catalog_item
65 26014 M Key Ingredients Key Ingredients Niacinamide 0 30 multiple_checkbox N N Y find_products
65 24626 M Key Ingredients Key Ingredients Kojic Acid 0 30 multiple_checkbox N N Y find_products
65 22330 M Key Ingredients Key Ingredients Glutathione 0 30 multiple_checkbox N N Y find_products
60 10191 M kindcode kindcode Cruelty Free 0 108 multiple_checkbox N N Y find_products
130 5 0 T Length Length cm 129 0 0 text N N Y describe_product
74 0.00 19150 N Net Content Net Content Unit(s) Single 0 0 dropdown_labels N N Y group_catalog_item
67 70.00 23224 N Net Weight Net Weight gm 70 0 1 dropdown N N Y group_catalog_item
157 51845 N Product Score KLEEN Score 6 0 0 text N N Y find_products
34 21446 M Skin Type Skin Type Combination 0 20 multiple_checkbox N N Y find_products