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 (
    4603, 4606, 4623, 4629, 4625, 4605, 4577, 
    4578, 4630, 4631, 4556, 4607, 4633, 
    4634, 4576, 4575, 4627, 4608, 4622, 
    4619, 4632, 4626, 4628, 4620, 4580, 
    4621, 4609
  ) 
  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(355, 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.01151

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "683.75"
    },
    "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": 1115,
            "rows_produced_per_join": 362,
            "filtered": "32.51",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (4603,4606,4623,4629,4625,4605,4577,4578,4630,4631,4556,4607,4633,4634,4576,4575,4627,4608,4622,4619,4632,4626,4628,4620,4580,4621,4609)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'ar')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "472.26",
              "eval_cost": "36.25",
              "prefix_cost": "508.51",
              "data_read_per_join": "280K"
            },
            "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": 34,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "90.64",
              "eval_cost": "3.45",
              "prefix_cost": "635.40",
              "data_read_per_join": "14K"
            },
            "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(355,`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": 34,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "8.63",
              "eval_cost": "3.45",
              "prefix_cost": "647.49",
              "data_read_per_join": "78K"
            },
            "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": 34,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "8.63",
              "eval_cost": "3.45",
              "prefix_cost": "659.58",
              "data_read_per_join": "39K"
            },
            "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": 34,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "8.63",
              "eval_cost": "3.45",
              "prefix_cost": "671.67",
              "data_read_per_join": "104K"
            },
            "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": 34,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "8.63",
              "eval_cost": "3.45",
              "prefix_cost": "683.75",
              "data_read_per_join": "14K"
            },
            "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
4556 641 1647 S Aspect Ratio 16:9 0 30
4575 641 2070 S Aspect Ratio 16:10 0 30
4576 641 1647 S Aspect Ratio 16:9 0 30
4577 641 2070 S Aspect Ratio 16:10 0 30
4578 641 1647 S Aspect Ratio 16:9 0 30
4580 641 2070 S Aspect Ratio 16:10 0 30
4603 641 2070 S Aspect Ratio 16:10 0 30
4605 641 1647 S Aspect Ratio 16:9 0 30
4606 641 2070 S Aspect Ratio 16:10 0 30
4607 641 1647 S Aspect Ratio 16:9 0 30
4608 641 1647 S Aspect Ratio 16:9 0 30
4609 641 2070 S Aspect Ratio 16:10 0 30
4619 641 2070 S Aspect Ratio 16:10 0 30
4620 641 2070 S Aspect Ratio 16:10 0 30
4621 641 2070 S Aspect Ratio 16:10 0 30
4622 641 2070 S Aspect Ratio 16:10 0 30
4623 641 2070 S Aspect Ratio 16:10 0 30
4625 641 2070 S Aspect Ratio 16:10 0 30
4626 641 2070 S Aspect Ratio 16:10 0 30
4627 641 2070 S Aspect Ratio 16:10 0 30
4628 641 2070 S Aspect Ratio 16:10 0 30
4629 641 2070 S Aspect Ratio 16:10 0 30
4630 641 2070 S Aspect Ratio 16:10 0 30
4631 641 2070 S Aspect Ratio 16:10 0 30
4632 641 2070 S Aspect Ratio 16:10 0 30
4633 641 2070 S Aspect Ratio 16:10 0 30
4634 641 2070 S Aspect Ratio 16:10 0 30
4556 659 5657 S Connectivity Wi-Fi 5, Bluetooth 5.1 0 152
4575 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
4576 659 5657 S Connectivity Wi-Fi 5, Bluetooth 5.1 0 152
4577 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
4578 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
4580 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
4603 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4605 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4606 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4607 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4608 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4609 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4619 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4620 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4621 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4622 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4623 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4625 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4626 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4627 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4628 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4629 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4630 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4631 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4632 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4633 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4634 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4556 649 2250 S Display 15.6" 0 20
4576 649 2250 S Display 15.6" 0 20
4578 649 2250 S Display 15.6" 0 20
4605 649 2250 S Display 15.6" 0 20
4607 649 2250 S Display 15.6" 0 20
4608 649 2250 S Display 15.6" 0 20
4619 649 2250 S Display 15.6" 0 20
4620 649 2250 S Display 15.6" 0 20
4630 649 5820 S Display 18" 0 20
4632 649 5820 S Display 18" 0 20
4634 649 5820 S Display 18" 0 20
4575 649 2137 S Display 16" 0 20
4577 649 2137 S Display 16" 0 20
4580 649 2137 S Display 16" 0 20
4603 649 2137 S Display 16" 0 20
4606 649 2137 S Display 16" 0 20
4609 649 2137 S Display 16" 0 20
4621 649 2137 S Display 16" 0 20
4622 649 2137 S Display 16" 0 20
4623 649 2137 S Display 16" 0 20
4625 649 2137 S Display 16" 0 20
4626 649 2137 S Display 16" 0 20
4627 649 2137 S Display 16" 0 20
4628 649 2137 S Display 16" 0 20
4629 649 2137 S Display 16" 0 20
4631 649 2137 S Display 16" 0 20
4633 649 2137 S Display 16" 0 20
4556 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4575 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4576 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4577 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4578 647 2254 S Front Camera 720p HD webcam 0 150
4580 647 2254 S Front Camera 720p HD webcam 0 150
4603 647 2254 S Front Camera 720p HD webcam 0 150
4605 647 2254 S Front Camera 720p HD webcam 0 150
4606 647 2254 S Front Camera 720p HD webcam 0 150
4607 647 2254 S Front Camera 720p HD webcam 0 150
4608 647 2254 S Front Camera 720p HD webcam 0 150
4609 647 2254 S Front Camera 720p HD webcam 0 150
4619 647 2254 S Front Camera 720p HD webcam 0 150
4620 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4621 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4622 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4623 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4625 647 5806 S Front Camera 1080p FHD IR Camera for Windows Hello 0 150
4626 647 5806 S Front Camera 1080p FHD IR Camera for Windows Hello 0 150
4627 647 5806 S Front Camera 1080p FHD IR Camera for Windows Hello 0 150
4628 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4629 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4630 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4631 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4632 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4633 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4634 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4556 652 5654 S GPU Intel Iris Xe Graphics 0 80
4575 652 5681 S GPU Integrated AMD Radeon Graphics 0 80
4576 652 5654 S GPU Intel Iris Xe Graphics 0 80
4577 652 5681 S GPU Integrated AMD Radeon Graphics 0 80
4578 652 5702 S GPU NVIDIA GeForce RTX 2050, 4GB GDDR6 0 80
4580 652 5654 S GPU Intel Iris Xe Graphics 0 80
4603 652 4052 S GPU NVIDIA GeForce RTX 3050, 6GB GDDR6 0 80
4605 652 5759 S GPU NVIDIA GeForce RTX 3050, 4GB GDDR6 0 80
4606 652 5761 S GPU NVIDIA GeForce RTX 4050, 6GB GDDR6 0 80
4607 652 5761 S GPU NVIDIA GeForce RTX 4050, 6GB GDDR6 0 80
4608 652 5761 S GPU NVIDIA GeForce RTX 4050, 6GB GDDR6 0 80
4609 652 5761 S GPU NVIDIA GeForce RTX 4050, 6GB GDDR6 0 80
4619 652 5761 S GPU NVIDIA GeForce RTX 4050, 6GB GDDR6 0 80
4620 652 5787 S GPU NVIDIA GeForce RTX 4060 8GB 0 80
4621 652 5792 S GPU NVIDIA GeForce RTX 5050 8GB GDDR6 0 80
4622 652 5796 S GPU NVIDIA GeForce RTX™ 5050 Laptop GPU (8GB GDDR6) 0 80
4623 652 5799 S GPU NVIDIA® GeForce RTX™ 5060 Laptop GPU, 8GB GDDR7 0 80
4625 652 5805 S GPU NVIDIA® GeForce RTX™ 5060 Laptop GPU, 8GB GDDR6 0 80
4626 652 4043 S GPU NVIDIA® GeForce RTX™ 4070 Laptop GPU, 8GB GDDR6 0 80
4627 652 5811 S GPU NVIDIA GeForce RTX 4060 Laptop GPU, 8 GB GDDR6 0 80
4628 652 5787 S GPU NVIDIA GeForce RTX 4060 8GB 0 80
4629 652 5817 S GPU NVIDIA GeForce RTX 5070 Ti 12GB GDDR7 0 80
4630 652 5822 S GPU NVIDIA GeForce RTX 5070 8GB GDDR7 0 80
4631 652 5817 S GPU NVIDIA GeForce RTX 5070 Ti 12GB GDDR7 0 80
4632 652 5817 S GPU NVIDIA GeForce RTX 5070 Ti 12GB GDDR7 0 80
4633 652 5829 S GPU NVIDIA® GeForce RTX™ 5080 Laptop GPU with 16GB GDDR7, ROG Boost up to 175W 0 80
4634 652 5833 S GPU NVIDIA® GeForce RTX™ 5090 Laptop GPU with 24GB GDDR7, ROG Boost up to 175W 0 80
4556 640 2274 S Operating System Windows 11 Pro 0 10
4575 640 2274 S Operating System Windows 11 Pro 0 10
4576 640 2274 S Operating System Windows 11 Pro 0 10
4577 640 2274 S Operating System Windows 11 Pro 0 10
4578 640 5698 S Operating System Windows 11 Home / Pro (varies by region) 0 10
4580 640 5705 S Operating System Windows 11 Home / Pro 0 10
4603 640 5705 S Operating System Windows 11 Home / Pro 0 10
4605 640 5705 S Operating System Windows 11 Home / Pro 0 10
4606 640 5705 S Operating System Windows 11 Home / Pro 0 10
4607 640 5705 S Operating System Windows 11 Home / Pro 0 10
4608 640 5705 S Operating System Windows 11 Home / Pro 0 10
4609 640 5705 S Operating System Windows 11 Home / Pro 0 10
4619 640 5705 S Operating System Windows 11 Home / Pro 0 10
4620 640 2274 S Operating System Windows 11 Pro 0 10
4621 640 5705 S Operating System Windows 11 Home / Pro 0 10
4622 640 4403 S Operating System Windows 11 Home 0 10
4623 640 4403 S Operating System Windows 11 Home 0 10
4625 640 2274 S Operating System Windows 11 Pro 0 10
4626 640 2274 S Operating System Windows 11 Pro 0 10
4627 640 2274 S Operating System Windows 11 Pro 0 10
4628 640 5705 S Operating System Windows 11 Home / Pro 0 10
4629 640 2274 S Operating System Windows 11 Pro 0 10
4630 640 2274 S Operating System Windows 11 Pro 0 10
4631 640 2274 S Operating System Windows 11 Pro 0 10
4632 640 2274 S Operating System Windows 11 Pro 0 10
4633 640 2274 S Operating System Windows 11 Pro 0 10
4634 640 2274 S Operating System Windows 11 Pro 0 10
4556 645 5656 S Ports 1 × USB-A 2.0, 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 1, 1 × HDMI 1.4, 1 × 3.5mm combo audio jack, 1 × DC-in 0 110
4575 645 5682 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 1, 1 × USB-A 2.0, 1 × HDMI 1.4, 1 × 3.5mm combo audio jack, 1 × DC-in 0 110
4576 645 5684 S Ports 1 × USB-A 2.0, 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 1, 1 × HDMI 1.4, 1 × 3.5mm combo audio jack, 1 × DC-in 0 110
4577 645 5682 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 1, 1 × USB-A 2.0, 1 × HDMI 1.4, 1 × 3.5mm combo audio jack, 1 × DC-in 0 110
4578 645 5704 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (supports DisplayPort 1.4, G-SYNC), 1 × USB-C 3.2 Gen 2 (supports Power Delivery + DisplayPort), 1 × HDMI 2.0b, 1 × RJ-45 LAN port, 1 × 3.5mm combo audio jack 0 110
4580 645 5708 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 1, 1 × USB-A 2.0, 1 × HDMI 1.4, 1 × 3.5mm combo audio jack , 1 × DC-in 0 110
4603 645 5754 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (supports DisplayPort & G-SYNC), 1 × USB-C 3.2 Gen 2 (supports Power Delivery + DisplayPort), 1 × HDMI 2.1, 1 × RJ-45 LAN port, 1 × 3.5mm combo audio jack 0 110
4605 645 5754 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (supports DisplayPort & G-SYNC), 1 × USB-C 3.2 Gen 2 (supports Power Delivery + DisplayPort), 1 × HDMI 2.1, 1 × RJ-45 LAN port, 1 × 3.5mm combo audio jack 0 110
4606 645 5762 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (supports DisplayPort & G-SYNC), 1 × USB-C 3.2 Gen 2 (supports Power Delivery + DisplayPort), 1 × HDMI 2.1, 1 × RJ-45 LAN port , 1 × 3.5mm combo audio jack 0 110
4607 645 5762 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (supports DisplayPort & G-SYNC), 1 × USB-C 3.2 Gen 2 (supports Power Delivery + DisplayPort), 1 × HDMI 2.1, 1 × RJ-45 LAN port , 1 × 3.5mm combo audio jack 0 110
4608 645 5764 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (supports DisplayPort & G-SYNC), 1 × Thunderbolt 4 (supports DisplayPort & Power Delivery), 1 × HDMI 2.1, 1 × RJ-45 LAN port, 1 × 3.5mm combo audio jack 0 110
4609 645 5766 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (supports DisplayPort & Power Delivery), 1 × Thunderbolt 4 (supports DisplayPort & Power Delivery), 1 × HDMI 2.1, 1 × RJ-45 LAN port, 1 × 3.5mm combo audio jack 0 110
4619 645 5766 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (supports DisplayPort & Power Delivery), 1 × Thunderbolt 4 (supports DisplayPort & Power Delivery), 1 × HDMI 2.1, 1 × RJ-45 LAN port, 1 × 3.5mm combo audio jack 0 110
4620 645 5789 S Ports 2 × Thunderbolt 4 (Power Delivery, DisplayPort 1.4), 1 × USB-C 3.2 Gen 2, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × SD card reader, 1 × headphone/mic combo jack 0 110
4621 645 5793 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (DisplayPort 1.4, Power Delivery), 1 × USB-C (Thunderbolt 4, DisplayPort 1.4), 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × Headphone / Mic combo jack 0 110
4622 645 5797 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C 3.2 Gen 2 (DisplayPort 1.4, Power Delivery), 1 × USB-C (Thunderbolt 4, DisplayPort 1.4), 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × 3.5mm headphone/mic combo jack 0 110
4623 645 5800 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × 3.5mm headphone/mic combo jack, 1 × SD card reader 0 110
4625 645 5803 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen 2, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × 3.5mm headphone/mic combo jack, 1 × SD card reader 0 110
4626 645 5803 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen 2, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × 3.5mm headphone/mic combo jack, 1 × SD card reader 0 110
4627 645 5813 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen 2, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × 3.5 mm headphone/mic combo jack, 1 × SD card reader 0 110
4628 645 5815 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 1 × USB-C Thunderbolt 4, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × headphone/mic combo jack 0 110
4629 645 5818 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ-45 Ethernet , 1 × SD card reader, 1 × Headphone/mic combo jack 0 110
4630 645 5823 S Ports 1 × USB‑C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB‑A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ‑45 Ethernet, 1 × SD card reader 1 × Headphone/mic combo jack 0 110
4631 645 5825 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen ,2 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × SD card reader, 1 × Headphone/mic combo jack 0 110
4632 645 5826 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen 2, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × SD card reader, 1 × Headphone/mic combo jack 0 110
4633 645 5830 S Ports 1 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × SD card reader, 1 × headphone/mic combo jack 0 110
4634 645 5834 S Ports 2 × USB-C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × SD card reader, 1 × headphone/mic combo jack 0 110
4580 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
4603 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
4621 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
4623 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
4556 651 2854 S Processor 12th Gen Intel® Core™ i7‑1265U (Intel® Evo™ platform) 0 60
4576 651 2854 S Processor 12th Gen Intel® Core™ i7‑1265U (Intel® Evo™ platform) 0 60
4605 651 2854 S Processor 12th Gen Intel® Core™ i7‑1265U (Intel® Evo™ platform) 0 60
4608 651 2854 S Processor 12th Gen Intel® Core™ i7‑1265U (Intel® Evo™ platform) 0 60
4626 651 2854 S Processor 12th Gen Intel® Core™ i7‑1265U (Intel® Evo™ platform) 0 60
4609 651 5765 S Processor Intel Core i9-13900H (14 cores, 20 threads, up to 5.4GHz) 0 60
4627 651 5765 S Processor Intel Core i9-13900H (14 cores, 20 threads, up to 5.4GHz) 0 60
4628 651 5765 S Processor Intel Core i9-13900H (14 cores, 20 threads, up to 5.4GHz) 0 60
4619 651 2276 S Processor Intel® Core™ Ultra 7 155H 0 60
4620 651 2276 S Processor Intel® Core™ Ultra 7 155H 0 60
4629 651 5378 S Processor Intel® Core™ Ultra 9 185H (up to 5.1 GHz with Intel® Turbo Boost Technology, 24 MB L3 cache, 16 cores, 22 threads) 0 60
4630 651 5378 S Processor Intel® Core™ Ultra 9 185H (up to 5.1 GHz with Intel® Turbo Boost Technology, 24 MB L3 cache, 16 cores, 22 threads) 0 60
4631 651 5378 S Processor Intel® Core™ Ultra 9 185H (up to 5.1 GHz with Intel® Turbo Boost Technology, 24 MB L3 cache, 16 cores, 22 threads) 0 60
4632 651 5378 S Processor Intel® Core™ Ultra 9 185H (up to 5.1 GHz with Intel® Turbo Boost Technology, 24 MB L3 cache, 16 cores, 22 threads) 0 60
4633 651 5378 S Processor Intel® Core™ Ultra 9 185H (up to 5.1 GHz with Intel® Turbo Boost Technology, 24 MB L3 cache, 16 cores, 22 threads) 0 60
4634 651 5378 S Processor Intel® Core™ Ultra 9 185H (up to 5.1 GHz with Intel® Turbo Boost Technology, 24 MB L3 cache, 16 cores, 22 threads) 0 60
4606 651 4354 S Processor AMD Ryzen 5 8645HS (6 cores / 12 threads, up to 5.0 GHz) 0 60
4575 651 5700 S Processor AMD Ryzen 7 7435HS (8 cores, 16 threads, up to 4.55GHz) 0 60
4577 651 5700 S Processor AMD Ryzen 7 7435HS (8 cores, 16 threads, up to 4.55GHz) 0 60
4578 651 5700 S Processor AMD Ryzen 7 7435HS (8 cores, 16 threads, up to 4.55GHz) 0 60
4607 651 5700 S Processor AMD Ryzen 7 7435HS (8 cores, 16 threads, up to 4.55GHz) 0 60
4622 651 5700 S Processor AMD Ryzen 7 7435HS (8 cores, 16 threads, up to 4.55GHz) 0 60
4625 651 5700 S Processor AMD Ryzen 7 7435HS (8 cores, 16 threads, up to 4.55GHz) 0 60
4556 643 1526 S Ram 8GB 0 70
4575 643 1526 S Ram 8GB 0 70
4576 643 1592 S Ram 16GB 0 70
4577 643 1592 S Ram 16GB 0 70
4578 643 1592 S Ram 16GB 0 70
4580 643 1592 S Ram 16GB 0 70
4603 643 1592 S Ram 16GB 0 70
4605 643 1592 S Ram 16GB 0 70
4606 643 1592 S Ram 16GB 0 70
4607 643 1592 S Ram 16GB 0 70
4608 643 1592 S Ram 16GB 0 70
4609 643 1592 S Ram 16GB 0 70
4619 643 1592 S Ram 16GB 0 70
4620 643 1592 S Ram 16GB 0 70
4621 643 1592 S Ram 16GB 0 70
4622 643 1592 S Ram 16GB 0 70
4623 643 1592 S Ram 16GB 0 70
4625 643 1592 S Ram 16GB 0 70
4629 643 1592 S Ram 16GB 0 70
4630 643 1592 S Ram 16GB 0 70
4626 643 2117 S Ram 32GB 0 70
4627 643 2117 S Ram 32GB 0 70
4628 643 2117 S Ram 32GB 0 70
4631 643 2117 S Ram 32GB 0 70
4632 643 2117 S Ram 32GB 0 70
4633 643 2117 S Ram 32GB 0 70
4634 643 3038 S Ram 64GB 0 70
4556 650 5347 S Refresh Rate 60 Hz 0 40
4575 650 5347 S Refresh Rate 60 Hz 0 40
4576 650 5218 S Refresh Rate 60 Hz 0 40
4577 650 5218 S Refresh Rate 60 Hz 0 40
4578 650 1541 S Refresh Rate 144Hz 0 40
4580 650 5218 S Refresh Rate 60 Hz 0 40
4603 650 1541 S Refresh Rate 144Hz 0 40
4605 650 1541 S Refresh Rate 144Hz 0 40
4606 650 1541 S Refresh Rate 144Hz 0 40
4607 650 1541 S Refresh Rate 144Hz 0 40
4608 650 1541 S Refresh Rate 144Hz 0 40
4609 650 1540 S Refresh Rate 120Hz 0 40
4619 650 1540 S Refresh Rate 120Hz 0 40
4620 650 1540 S Refresh Rate 120Hz 0 40
4621 650 1542 S Refresh Rate 165Hz 0 40
4622 650 1542 S Refresh Rate 165Hz 0 40
4623 650 1542 S Refresh Rate 165Hz 0 40
4625 650 1542 S Refresh Rate 165Hz 0 40
4626 650 1542 S Refresh Rate 165Hz 0 40
4627 650 1542 S Refresh Rate 165Hz 0 40
4628 650 1542 S Refresh Rate 165Hz 0 40
4629 650 1542 S Refresh Rate 165Hz 0 40
4630 650 1541 S Refresh Rate 144Hz 0 40
4631 650 1542 S Refresh Rate 165Hz 0 40
4632 650 1541 S Refresh Rate 144Hz 0 40
4633 650 1544 S Refresh Rate 240Hz 0 40
4634 650 1544 S Refresh Rate 240Hz 0 40
4556 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
4575 642 5678 S Resolution 1920 x 1200 (WUXGA) 0 50
4576 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
4577 642 5678 S Resolution 1920 x 1200 (WUXGA) 0 50
4578 642 5699 S Resolution 1920 × 1080 (Full HD) 0 50
4580 642 5706 S Resolution 1920 × 1200 (WUXGA) 0 50
4603 642 5706 S Resolution 1920 × 1200 (WUXGA) 0 50
4605 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
4606 642 5678 S Resolution 1920 x 1200 (WUXGA) 0 50
4607 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
4608 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
4609 642 2987 S Resolution 2560 x 1600 0 50
4619 642 4076 S Resolution 2560 × 1600 (WQXGA) 0 50
4620 642 5786 S Resolution 2880 x 1620 (WQXGA) 0 50
4621 642 2275 S Resolution 1920 x 1200 0 50
4622 642 2275 S Resolution 1920 x 1200 0 50
4623 642 2275 S Resolution 1920 x 1200 0 50
4625 642 2275 S Resolution 1920 x 1200 0 50
4626 642 2275 S Resolution 1920 x 1200 0 50
4627 642 2275 S Resolution 1920 x 1200 0 50
4628 642 2275 S Resolution 1920 x 1200 0 50
4629 642 5219 S Resolution 1920 × 1200 0 50
4630 642 2275 S Resolution 1920 x 1200 0 50
4631 642 2275 S Resolution 1920 x 1200 0 50
4632 642 2275 S Resolution 1920 x 1200 0 50
4633 642 2987 S Resolution 2560 x 1600 0 50
4634 642 2987 S Resolution 2560 x 1600 0 50
4556 648 1563 S التخزين 512GB 0 170
4575 648 1563 S التخزين 512GB 0 170
4576 648 1563 S التخزين 512GB 0 170
4577 648 1563 S التخزين 512GB 0 170
4578 648 1563 S التخزين 512GB 0 170
4580 648 1563 S التخزين 512GB 0 170
4603 648 1563 S التخزين 512GB 0 170
4605 648 1563 S التخزين 512GB 0 170
4606 648 1563 S التخزين 512GB 0 170
4607 648 1563 S التخزين 512GB 0 170
4608 648 1563 S التخزين 512GB 0 170
4609 648 1563 S التخزين 512GB 0 170
4621 648 1563 S التخزين 512GB 0 170
4622 648 1563 S التخزين 512GB 0 170
4623 648 1563 S التخزين 512GB 0 170
4625 648 1563 S التخزين 512GB 0 170
4626 648 1563 S التخزين 512GB 0 170
4627 648 1563 S التخزين 512GB 0 170
4630 648 1563 S التخزين 512GB 0 170
4619 648 1564 S التخزين 1TB 0 170
4620 648 1564 S التخزين 1TB 0 170
4628 648 1564 S التخزين 1TB 0 170
4629 648 1564 S التخزين 1TB 0 170
4631 648 1564 S التخزين 1TB 0 170
4632 648 1564 S التخزين 1TB 0 170
4633 648 1564 S التخزين 1TB 0 170
4634 648 1564 S التخزين 1TB 0 170
4556 653 5655 S باتري 42 Wh 0 100
4575 653 5655 S باتري 42 Wh 0 100
4576 653 5655 S باتري 42 Wh 0 100
4577 653 5655 S باتري 42 Wh 0 100
4578 653 5703 S باتري 8Wh / 56Wh (varies by configuration) 0 100
4580 653 5655 S باتري 42 Wh 0 100
4603 653 5753 S باتري 90 Wh 0 100
4605 653 5753 S باتري 90 Wh 0 100
4606 653 5753 S باتري 90 Wh 0 100
4607 653 5753 S باتري 90 Wh 0 100
4608 653 5753 S باتري 90 Wh 0 100
4609 653 5753 S باتري 90 Wh 0 100
4619 653 5753 S باتري 90 Wh 0 100
4620 653 5788 S باتري 96 Wh 0 100
4621 653 5753 S باتري 90 Wh 0 100
4622 653 5753 S باتري 90 Wh 0 100
4623 653 5753 S باتري 90 Wh 0 100
4625 653 5753 S باتري 90 Wh 0 100
4626 653 5753 S باتري 90 Wh 0 100
4627 653 5812 S باتري ~90 Wh 0 100
4628 653 5753 S باتري 90 Wh 0 100
4629 653 5753 S باتري 90 Wh 0 100
4630 653 5753 S باتري 90 Wh 0 100
4631 653 5753 S باتري 90 Wh 0 100
4632 653 5753 S باتري 90 Wh 0 100
4633 653 5753 S باتري 90 Wh 0 100
4634 653 5753 S باتري 90 Wh 0 100
4556 656 1607 S لون Silver 0 160
4575 656 1560 S لون Black 0 160
4576 656 1607 S لون Silver 0 160
4577 656 1560 S لون Black 0 160
4578 656 1560 S لون Black 0 160
4580 656 1599 S لون Midnight Black 0 160
4603 656 2077 S لون Grey 0 160
4605 656 2077 S لون Grey 0 160
4606 656 2077 S لون Grey 0 160
4607 656 2077 S لون Grey 0 160
4608 656 2077 S لون Grey 0 160
4609 656 1560 S لون Black 0 160
4619 656 1607 S لون Silver 0 160
4620 656 1607 S لون Silver 0 160
4621 656 2077 S لون Grey 0 160
4622 656 2077 S لون Grey 0 160
4623 656 2077 S لون Grey 0 160
4625 656 2077 S لون Grey 0 160
4626 656 2077 S لون Grey 0 160
4627 656 2077 S لون Grey 0 160
4628 656 2077 S لون Grey 0 160
4629 656 5819 S لون Volt Green 0 160
4630 656 2077 S لون Grey 0 160
4631 656 1560 S لون Black 0 160
4632 656 5819 S لون Volt Green 0 160
4633 656 2077 S لون Grey 0 160
4634 656 5835 S لون Off Black 0 160
4556 657 5650 E ماركة Asus 0 0
4575 657 5650 E ماركة Asus 0 0
4576 657 5650 E ماركة Asus 0 0
4577 657 5650 E ماركة Asus 0 0
4578 657 5650 E ماركة Asus 0 0
4580 657 5650 E ماركة Asus 0 0
4603 657 5650 E ماركة Asus 0 0
4605 657 5650 E ماركة Asus 0 0
4606 657 5650 E ماركة Asus 0 0
4607 657 5650 E ماركة Asus 0 0
4608 657 5650 E ماركة Asus 0 0
4609 657 5650 E ماركة Asus 0 0
4619 657 5650 E ماركة Asus 0 0
4620 657 5650 E ماركة Asus 0 0
4621 657 5650 E ماركة Asus 0 0
4622 657 5650 E ماركة Asus 0 0
4623 657 5650 E ماركة Asus 0 0
4625 657 5650 E ماركة Asus 0 0
4626 657 5650 E ماركة Asus 0 0
4627 657 5650 E ماركة Asus 0 0
4628 657 5650 E ماركة Asus 0 0
4629 657 5650 E ماركة Asus 0 0
4630 657 5650 E ماركة Asus 0 0
4631 657 5650 E ماركة Asus 0 0
4632 657 5650 E ماركة Asus 0 0
4633 657 5650 E ماركة Asus 0 0
4634 657 5650 E ماركة Asus 0 0