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 (
    4846, 4735, 4843, 4712, 4753, 4734, 4711, 
    4844, 4709, 4713, 4719, 4845, 4710, 
    4842
  ) 
  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(532, 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.00876

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "352.02"
    },
    "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": 574,
            "rows_produced_per_join": 186,
            "filtered": "32.51",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (4846,4735,4843,4712,4753,4734,4711,4844,4709,4713,4719,4845,4710,4842)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'ar')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "243.15",
              "eval_cost": "18.66",
              "prefix_cost": "261.81",
              "data_read_per_join": "144K"
            },
            "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": 17,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "46.66",
              "eval_cost": "1.78",
              "prefix_cost": "327.13",
              "data_read_per_join": "7K"
            },
            "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(532,`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": 17,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "4.45",
              "eval_cost": "1.78",
              "prefix_cost": "333.36",
              "data_read_per_join": "40K"
            },
            "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": 17,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "4.45",
              "eval_cost": "1.78",
              "prefix_cost": "339.58",
              "data_read_per_join": "20K"
            },
            "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": 17,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "4.45",
              "eval_cost": "1.78",
              "prefix_cost": "345.80",
              "data_read_per_join": "53K"
            },
            "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": 17,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "4.45",
              "eval_cost": "1.78",
              "prefix_cost": "352.03",
              "data_read_per_join": "7K"
            },
            "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
4709 641 1647 S Aspect Ratio 16:9 0 30
4710 641 2070 S Aspect Ratio 16:10 0 30
4711 641 2070 S Aspect Ratio 16:10 0 30
4712 641 1647 S Aspect Ratio 16:9 0 30
4713 641 2070 S Aspect Ratio 16:10 0 30
4719 641 2070 S Aspect Ratio 16:10 0 30
4734 641 2070 S Aspect Ratio 16:10 0 30
4735 641 2070 S Aspect Ratio 16:10 0 30
4753 641 2070 S Aspect Ratio 16:10 0 30
4842 641 2070 S Aspect Ratio 16:10 0 30
4844 641 2070 S Aspect Ratio 16:10 0 30
4845 641 2070 S Aspect Ratio 16:10 0 30
4846 641 2070 S Aspect Ratio 16:10 0 30
4709 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4710 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4711 659 5921 S Connectivity Wi-Fi 6E, Bluetooth 5.3, optional Gigabit Ethernet 0 152
4712 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4713 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4719 659 5938 S Connectivity Wi-Fi 7, Bluetooth 4 0 152
4734 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4735 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4753 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4842 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4843 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4844 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4845 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4846 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
4709 649 2250 S Display 15.6" 0 20
4712 649 2250 S Display 15.6" 0 20
4713 649 13.30 8925 S Display 13.3" 0 20
4734 649 5820 S Display 18" 0 20
4843 649 5820 S Display 18" 0 20
4844 649 17.00 8930 S Display 17" 0 20
4845 649 5820 S Display 18" 0 20
4846 649 5820 S Display 18" 0 20
4710 649 2136 S Display 14" 0 20
4711 649 2136 S Display 14" 0 20
4719 649 2137 S Display 16" 0 20
4735 649 2137 S Display 16" 0 20
4753 649 2137 S Display 16" 0 20
4842 649 2137 S Display 16" 0 20
4709 647 2254 S Front Camera 720p HD webcam 0 150
4711 647 5920 S Front Camera 720p HD webcam with 3D Noise Reduction 0 150
4712 647 2254 S Front Camera 720p HD webcam 0 150
4713 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4719 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4734 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4735 647 5961 S Front Camera 1080p FHD IR camera with HDR 0 150
4753 647 6036 S Front Camera 1080p FHD IR Camera with privacy shutter 0 150
4842 647 6095 S Front Camera 1080p FHD IR camera with HDR and 3D Noise Reduction 0 150
4843 647 6100 S Front Camera 1080p FHD IR camera with HDR and 3DNR+ 0 150
4844 647 6106 S Front Camera 1080p FHD IR Camera with HDR and Webcam Shutter 0 150
4845 647 5961 S Front Camera 1080p FHD IR camera with HDR 0 150
4846 647 5961 S Front Camera 1080p FHD IR camera with HDR 0 150
4709 652 6139 S GPU NVIDIA GeForce RTX 2050 (4GB GDDR6) 0 80
4710 652 5913 S GPU Intel® Arc Graphics (shared) 0 80
4711 652 4366 S GPU Integrated Intel Iris Xe Graphics 0 80
4712 652 5925 S GPU NVIDIA® GeForce RTX 5060 Laptop GPU, 8 GB GDDR7 — up to 115 W max graphics power, ~2497 MHz boost clock, 572 AI TOPS 0 80
4713 652 5931 S GPU Integrated Intel Arc 140V 0 80
4719 652 5937 S GPU Intel® Arc™ Graphics 0 80
4734 652 5952 S GPU NVIDIA® GeForce RTX 5070 Laptop GPU, 8 GB GDDR7 0 80
4735 652 5958 S GPU NVIDIA® GeForce RTX™ 5070 Laptop GPU, 8 GB GDDR7 0 80
4753 652 6034 S GPU NVIDIA® GeForce RTX™ 5070 Ti Laptop GPU, 12GB GDDR7 0 80
4842 652 6093 S GPU NVIDIA® GeForce RTX™ 5080 Laptop GPU with 16 GB GDDR7 (Blackwell architecture) 0 80
4843 652 6098 S GPU NVIDIA® GeForce RTX 5080 Laptop GPU with 16 GB GDDR7 (Blackwell architecture) 0 80
4844 652 6104 S GPU NVIDIA® GeForce RTX™ 5090 Laptop GPU, 24 GB GDDR7 0 80
4845 652 6113 S GPU NVIDIA GeForce RTX 5090 (24GB GDDR7) 0 80
4846 652 6118 S GPU NVIDIA® GeForce RTX™ 5090 Laptop GPU, 24GB GDDR7 0 80
4709 640 4040 S Operating System Windows 10 Pro K 0 10
4710 640 4049 S Operating System Windows 11 Pro K 0 10
4711 640 5705 S Operating System Windows 11 Home / Pro 0 10
4712 640 2274 S Operating System Windows 11 Pro 0 10
4713 640 2274 S Operating System Windows 11 Pro 0 10
4719 640 2257 S Operating System Windows 11 0 10
4734 640 4049 S Operating System Windows 11 Pro K 0 10
4735 640 4049 S Operating System Windows 11 Pro K 0 10
4753 640 2274 S Operating System Windows 11 Pro 0 10
4842 640 4049 S Operating System Windows 11 Pro K 0 10
4843 640 2274 S Operating System Windows 11 Pro 0 10
4844 640 4049 S Operating System Windows 11 Pro K 0 10
4845 640 4403 S Operating System Windows 11 Home 0 10
4846 640 4403 S Operating System Windows 11 Home 0 10
4709 645 6140 S Ports 2 × USB-A, 1 × USB-C, 1 × HDMI 2.1, 1 × SD Card Reader, Combo Jack 0 110
4710 645 5914 S Ports 2 x Thunderbolt™ 4, 1 x USB-A 3.2 Gen 2, HDMI 2.1, 1 x 3.5mm audio jack, 1 x RJ-45 Ethernet 0 110
4711 645 5919 S Ports 3 × USB-A 3.2 Gen1, 1 × HDMI 2.1 (4K @ 60 Hz), 1 × Thunderbolt™ 4 (DisplayPort / Power Delivery), Optional: RJ45 Ethernet, Smart Card Reader, SD Card Reader, NFC 0 110
4712 645 5927 S Ports 3 × USB-A 3.2 Gen2, 1 × USB-C (USB 3.2 Gen2 / DisplayPort / Power Delivery 3.0), 1 × HDMI 2.1 (supports up to 8K @ 60 Hz or 4K @ 120 Hz), 1 × Gigabit Ethernet (RJ-45), 1 × Mic-in/Headphone-out combo jack 0 110
4713 645 5933 S Ports 2 × Thunderbolt™ 4, 1 × USB Type-A 3.2 Gen 2, 1 × HDMI 2.1, 1 × MicroSD card reader, 1 × 3.5mm audio combo jack 0 110
4719 645 5933 S Ports 2 × Thunderbolt™ 4, 1 × USB Type-A 3.2 Gen 2, 1 × HDMI 2.1, 1 × MicroSD card reader, 1 × 3.5mm audio combo jack 0 110
4734 645 5953 S Ports 1 × Thunderbolt™ 4 (DisplayPort/Power Delivery), 1 × HDMI 2.1 (8K @ 60 Hz / 4K @ 120 Hz), 3 × USB-A 3.2 Gen1, 1 × RJ-45 Ethernet, 1 × Audio combo jack 0 110
4735 645 5960 S Ports 1 × Thunderbolt™ 4 (DisplayPort/PD 3.0), 2 × USB-A 3.2 Gen2, 1 × HDMI 2.1 (8K@60 / 4K@120), 1 × RJ-45 (2.5GbE), 1 × 3.5 mm mic/headphone combo. 0 110
4753 645 6035 S Ports 2 × Thunderbolt™ 5, 2 × USB-A 3.2 Gen2, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × 3.5mm headphone/microphone combo jack 0 110
4842 645 6094 S Ports 2 × Thunderbolt™ 5 (DisplayPort/PD), 2 × USB-A 3.2 Gen2, 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 x SD card reader, 1 x combo audio jack 0 110
4843 645 6099 S Ports 2 × Thunderbolt 5 (DP/PD 3.1) , 3 × USB-A 3.2 Gen2, 1 × HDMI 2.1 (8K @60 Hz or 4K @120 Hz), 1 × RJ-45 Ethernet, 1 × SD Express card reader, 1 × 3.5 mm combo audio jack 0 110
4844 645 6105 S Ports 2 × Thunderbolt™ 5 (DP/PD 3.1), 2 × USB-A 3.2 Gen2, 1 × HDMI 2.1 (8K@60 / 4K@120), 1 × SD Express card reader, 1 × RJ-45, 1 × 3.5 mm combo jack 0 110
4845 645 6114 S Ports 2 × Thunderbolt™ 5, 1 × HDMI 2.1, 2 × USB-A 3.2 Gen2, 1 × RJ-45 (2.5GbE), 1 × 3.5mm combo jack 0 110
4846 645 6114 S Ports 2 × Thunderbolt™ 5, 1 × HDMI 2.1, 2 × USB-A 3.2 Gen2, 1 × RJ-45 (2.5GbE), 1 × 3.5mm combo jack 0 110
4709 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
4711 651 2854 S Processor 12th Gen Intel® Core™ i7‑1265U (Intel® Evo™ platform) 0 60
4712 651 2854 S Processor 12th Gen Intel® Core™ i7‑1265U (Intel® Evo™ platform) 0 60
4710 651 5911 S Processor Intel® Core™ Ultra 5 125H (1.2–4.5GHz, 14 cores) 0 60
4719 651 2276 S Processor Intel® Core™ Ultra 7 155H 0 60
4713 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
4734 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
4735 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
4753 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
4842 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
4843 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
4844 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
4845 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
4846 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
4709 643 1526 S Ram 8GB 0 70
4710 643 1592 S Ram 16GB 0 70
4711 643 1592 S Ram 16GB 0 70
4712 643 1592 S Ram 16GB 0 70
4719 643 1592 S Ram 16GB 0 70
4713 643 2117 S Ram 32GB 0 70
4734 643 2117 S Ram 32GB 0 70
4735 643 2117 S Ram 32GB 0 70
4753 643 2117 S Ram 32GB 0 70
4842 643 2117 S Ram 32GB 0 70
4844 643 2117 S Ram 32GB 0 70
4843 643 3038 S Ram 64GB 0 70
4845 643 3038 S Ram 64GB 0 70
4846 643 2182 S Ram 96GB 0 70
4709 650 1541 S Refresh Rate 144Hz 0 40
4710 650 1541 S Refresh Rate 144Hz 0 40
4711 650 1539 S Refresh Rate 60Hz 0 40
4712 650 1542 S Refresh Rate 165Hz 0 40
4713 650 5218 S Refresh Rate 60 Hz 0 40
4719 650 1542 S Refresh Rate 165Hz 0 40
4734 650 1544 S Refresh Rate 240Hz 0 40
4735 650 1544 S Refresh Rate 240Hz 0 40
4753 650 1544 S Refresh Rate 240Hz 0 40
4842 650 1544 S Refresh Rate 240Hz 0 40
4843 650 1540 S Refresh Rate 120Hz 0 40
4844 650 1544 S Refresh Rate 240Hz 0 40
4845 650 1540 S Refresh Rate 120Hz 0 40
4846 650 1540 S Refresh Rate 120Hz 0 40
4709 642 4211 S Resolution 1920 x 1080 0 50
4710 642 2275 S Resolution 1920 x 1200 0 50
4711 642 2275 S Resolution 1920 x 1200 0 50
4712 642 1940 S Resolution 2560 x 1440 (QHD) 0 50
4713 642 2275 S Resolution 1920 x 1200 0 50
4719 642 2987 S Resolution 2560 x 1600 0 50
4734 642 2987 S Resolution 2560 x 1600 0 50
4735 642 2987 S Resolution 2560 x 1600 0 50
4753 642 2987 S Resolution 2560 x 1600 0 50
4842 642 2987 S Resolution 2560 x 1600 0 50
4843 642 4237 S Resolution 3840 x 2400 0 50
4844 642 2987 S Resolution 2560 x 1600 0 50
4845 642 4237 S Resolution 3840 x 2400 0 50
4846 642 4237 S Resolution 3840 x 2400 0 50
4709 648 1563 S التخزين 512GB 0 170
4710 648 1563 S التخزين 512GB 0 170
4711 648 1563 S التخزين 512GB 0 170
4712 648 1563 S التخزين 512GB 0 170
4719 648 1563 S التخزين 512GB 0 170
4713 648 1564 S التخزين 1TB 0 170
4734 648 1564 S التخزين 1TB 0 170
4735 648 1564 S التخزين 1TB 0 170
4753 648 1564 S التخزين 1TB 0 170
4842 648 1564 S التخزين 1TB 0 170
4844 648 1564 S التخزين 1TB 0 170
4843 648 1565 S التخزين 2TB 0 170
4845 648 1565 S التخزين 2TB 0 170
4846 648 5186 S التخزين 4TB 0 170
4709 653 2906 S باتري 5,000mAh 0 100
4710 653 7896.00 6141 S باتري 7896  mAh 0 100
4711 653 6142 S باتري 4719  mAh 0 100
4712 653 6143 S باتري 6579  mAh 0 100
4713 653 6144 S باتري 6140  mAh 0 100
4719 653 6144 S باتري 6140  mAh 0 100
4734 653 7896.00 6145 S باتري 7896 mAh 0 100
4735 653 8763.00 6146 S باتري 8763  mAh 0 100
4753 653 6146 S باتري 8763  mAh 0 100
4842 653 7896.00 6147 S باتري 7896  mAh 0 100
4843 653 6147 S باتري 7896  mAh 0 100
4844 653 6147 S باتري 7896  mAh 0 100
4845 653 6146 S باتري 8763  mAh 0 100
4846 653 6146 S باتري 8763  mAh 0 100
4709 656 2077 S لون Grey 0 160
4710 656 2077 S لون Grey 0 160
4711 656 2077 S لون Grey 0 160
4712 656 1560 S لون Black 0 160
4713 656 1560 S لون Black 0 160
4719 656 1560 S لون Black 0 160
4734 656 2077 S لون Grey 0 160
4735 656 1560 S لون Black 0 160
4753 656 1560 S لون Black 0 160
4842 656 2077 S لون Grey 0 160
4843 656 1560 S لون Black 0 160
4844 656 3037 S لون Dark Grey 0 160
4845 656 1560 S لون Black 0 160
4846 656 1560 S لون Black 0 160
4709 657 5225 E ماركة MSI 0 0
4710 657 5225 E ماركة MSI 0 0
4711 657 5225 E ماركة MSI 0 0
4712 657 5225 E ماركة MSI 0 0
4713 657 5225 E ماركة MSI 0 0
4719 657 5225 E ماركة MSI 0 0
4734 657 5225 E ماركة MSI 0 0
4735 657 5225 E ماركة MSI 0 0
4753 657 5225 E ماركة MSI 0 0
4842 657 5225 E ماركة MSI 0 0
4843 657 5225 E ماركة MSI 0 0
4844 657 5225 E ماركة MSI 0 0
4845 657 5225 E ماركة MSI 0 0
4846 657 5225 E ماركة MSI 0 0