SELECT 
  v.product_id, 
  v.feature_id, 
  v.value, 
  v.value_int, 
  v.variant_id, 
  f.feature_type, 
  fd.description, 
  fd.prefix, 
  fd.suffix, 
  vd.variant, 
  f.parent_id, 
  f.position, 
  gf.position as gposition 
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 = 'ar' 
  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 = 'ar' 
  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 in (4089, 4083, 4168, 4201, 4162) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(167, f.categories_path) 
    OR FIND_IN_SET(353, 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 = 'ar' 
ORDER BY 
  fd.description, 
  fv.position

Query time 0.00534

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "126.94"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "v",
            "access_type": "range",
            "possible_keys": [
              "PRIMARY",
              "fl",
              "variant_id",
              "lang_code",
              "product_id",
              "fpl",
              "idx_product_feature_variant_id"
            ],
            "key": "idx_product_feature_variant_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 207,
            "rows_produced_per_join": 67,
            "filtered": "32.51",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (4089,4083,4168,4201,4162)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'ar')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "87.68",
              "eval_cost": "6.73",
              "prefix_cost": "94.41",
              "data_read_per_join": "52K"
            },
            "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": [
              "softwarepirmam_hewadelivard_cscart_4.v.feature_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 6,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "16.83",
              "eval_cost": "0.64",
              "prefix_cost": "117.97",
              "data_read_per_join": "2K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "categories_path",
              "parent_id",
              "display_on_catalog",
              "status",
              "position"
            ],
            "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`f`.`status` = 'A') and (`softwarepirmam_hewadelivard_cscart_4`.`f`.`display_on_catalog` = 'Y') and ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path` = '') or (0 <> find_in_set(166,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(167,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(353,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`))) and (if(`softwarepirmam_hewadelivard_cscart_4`.`f`.`parent_id`,(/* select#2 */ select `softwarepirmam_hewadelivard_cscart_4`.`df`.`status` from `softwarepirmam_hewadelivard_cscart_4`.`cscart_product_features` `df` where (`softwarepirmam_hewadelivard_cscart_4`.`df`.`feature_id` = `softwarepirmam_hewadelivard_cscart_4`.`f`.`parent_id`)),'A') = 'A') and ((`softwarepirmam_hewadelivard_cscart_4`.`v`.`variant_id` <> 0) or ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`feature_type` <> 'C') and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`value` <> '')) or (`softwarepirmam_hewadelivard_cscart_4`.`f`.`feature_type` = 'C') or (`softwarepirmam_hewadelivard_cscart_4`.`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": [
                      "softwarepirmam_hewadelivard_cscart_4.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": "440"
                    },
                    "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": [
              "softwarepirmam_hewadelivard_cscart_4.v.feature_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 6,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.60",
              "eval_cost": "0.64",
              "prefix_cost": "120.21",
              "data_read_per_join": "14K"
            },
            "used_columns": [
              "feature_id",
              "description",
              "prefix",
              "suffix",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "fv",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.variant_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 6,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.60",
              "eval_cost": "0.64",
              "prefix_cost": "122.46",
              "data_read_per_join": "7K"
            },
            "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": [
              "softwarepirmam_hewadelivard_cscart_4.fv.variant_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 6,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.60",
              "eval_cost": "0.64",
              "prefix_cost": "124.70",
              "data_read_per_join": "19K"
            },
            "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": [
              "softwarepirmam_hewadelivard_cscart_4.f.parent_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 6,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.60",
              "eval_cost": "0.64",
              "prefix_cost": "126.94",
              "data_read_per_join": "2K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "position"
            ],
            "attached_condition": "<if>(is_not_null_compl(gf), (`softwarepirmam_hewadelivard_cscart_4`.`gf`.`feature_type` = 'G'), true)"
          }
        }
      ]
    }
  }
}

Result

product_id feature_id value value_int variant_id feature_type description prefix suffix variant parent_id position gposition
4083 641 1647 S Aspect Ratio 16:9 0 30
4201 641 2070 S Aspect Ratio 16:10 0 30
4168 641 2070 S Aspect Ratio 16:10 0 30
4162 641 5217 S Aspect Ratio 16 : 10 0 30
4089 641 1647 S Aspect Ratio 16:9 0 30
4201 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4168 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4162 659 5057 S Connectivity Wi-Fi 6E, Bluetooth 5.2. 0 152
4089 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4083 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4083 649 2250 S Display 15.6" 0 20
4089 649 2250 S Display 15.6" 0 20
4168 649 2137 S Display 16" 0 20
4201 649 2137 S Display 16" 0 20
4162 649 2137 S Display 16" 0 20
4168 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4083 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4201 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4162 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4089 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4083 652 5154 S GPU NVIDIA® GeForce® MX570 2GB GDDR6 0 80
4162 652 5220 S GPU Intel® Iris® Xe Graphics (integrated) – referred to as Intel® Graphics 0 80
4168 652 3051 S GPU Intel® Integrated Graphics 0 80
4201 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4089 652 5159 S GPU Intel® Iris® Xe Graphics (integrated) 0 80
4168 640 4049 S Operating System Windows 11 Pro K 0 10
4083 640 1794 S Operating System Android 14 0 10
4162 640 5215 S Operating System Windows 11 Pro (HP recommends Windows 11 Pro for business) 0 10
4201 640 2257 S Operating System Windows 11 0 10
4089 640 4049 S Operating System Windows 11 Pro K 0 10
4083 645 5156 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4168 645 5236 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4201 645 5318 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4162 645 5390 S Ports 2 × USB‑C (USB 3.2 Gen 2×2), 1 x USB Power Delivery, 1 x DisplayPort 1.4 support, 1 x HP Sleep and Charge capability 0 110
4089 645 5166 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0, 1 × RJ-45 Ethernet port (1 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4089 651 2251 S Processor 12th Gen Intel® Core™ i5-1235U (10 cores: 2 performance cores + 8 efficiency cores, up to 4.4 GHz) 0 60
4083 651 2251 S Processor 12th Gen Intel® Core™ i5-1235U (10 cores: 2 performance cores + 8 efficiency cores, up to 4.4 GHz) 0 60
4162 651 5911 S Processor Intel® Core™ Ultra 5 125H (1.2–4.5GHz, 14 cores) 0 60
4168 651 5911 S Processor Intel® Core™ Ultra 5 125H (1.2–4.5GHz, 14 cores) 0 60
4201 651 5911 S Processor Intel® Core™ Ultra 5 125H (1.2–4.5GHz, 14 cores) 0 60
4083 643 1526 S Ram 8GB 0 70
4201 643 1526 S Ram 8GB 0 70
4168 643 1592 S Ram 16GB 0 70
4089 643 1592 S Ram 16GB 0 70
4162 643 1592 S Ram 16GB 0 70
4168 650 1539 S Refresh Rate 60Hz 0 40
4089 650 1539 S Refresh Rate 60Hz 0 40
4083 650 1539 S Refresh Rate 60Hz 0 40
4162 650 5218 S Refresh Rate 60 Hz 0 40
4201 650 1539 S Refresh Rate 60Hz 0 40
4201 642 2275 S Resolution 1920 x 1200 0 50
4083 642 4211 S Resolution 1920 x 1080 0 50
4168 642 2275 S Resolution 1920 x 1200 0 50
4162 642 5219 S Resolution 1920 × 1200 0 50
4089 642 4211 S Resolution 1920 x 1080 0 50
4168 648 1563 S التخزين 512GB 0 170
4162 648 1563 S التخزين 512GB 0 170
4083 648 1563 S التخزين 512GB 0 170
4089 648 1563 S التخزين 512GB 0 170
4201 648 1564 S التخزين 1TB 0 170
4201 653 5247 S باتري 41Wh, Up to 11 hours 0 100
4083 653 5155 S باتري 3 cell, 41 Wh, Up to 8 hours, fast charge support 0 100
4168 653 5392 S باتري 6,140mAh 0 100
4162 653 5221 S باتري 48 Wh (~13,043 mAh) 0 100
4089 653 5164 S باتري 41 Wh, Up to 8-10 hours (varies by usage) 0 100
4168 656 1783 S لون Dark blue 0 160
4162 656 2077 S لون Grey 0 160
4089 656 1607 S لون Silver 0 160
4201 656 1607 S لون Silver 0 160
4083 656 1607 S لون Silver 0 160
4168 657 4960 E ماركة HP 0 0
4162 657 4960 E ماركة HP 0 0
4089 657 4960 E ماركة HP 0 0
4083 657 4960 E ماركة HP 0 0
4201 657 4960 E ماركة HP 0 0