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 (
    2478, 2527, 2490, 2471, 2576, 2620, 2502, 
    2473, 2565, 2580, 2550, 2599, 2503, 
    2602, 2540, 2685, 2623, 2499, 2581, 
    2631, 2519, 10140
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(234, f.categories_path) 
    OR FIND_IN_SET(236, 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.01012

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "590.82"
    },
    "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": 964,
            "rows_produced_per_join": 313,
            "filtered": "32.51",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (2478,2527,2490,2471,2576,2620,2502,2473,2565,2580,2550,2599,2503,2602,2540,2685,2623,2499,2581,2631,2519,10140)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'ar')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "407.97",
              "eval_cost": "31.34",
              "prefix_cost": "439.31",
              "data_read_per_join": "242K"
            },
            "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": 29,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "78.36",
              "eval_cost": "2.99",
              "prefix_cost": "549.02",
              "data_read_per_join": "12K"
            },
            "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(234,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(236,`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": 29,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "7.47",
              "eval_cost": "2.99",
              "prefix_cost": "559.47",
              "data_read_per_join": "67K"
            },
            "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": 29,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "7.47",
              "eval_cost": "2.99",
              "prefix_cost": "569.92",
              "data_read_per_join": "34K"
            },
            "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": 29,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "7.47",
              "eval_cost": "2.99",
              "prefix_cost": "580.37",
              "data_read_per_join": "90K"
            },
            "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": 29,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "7.47",
              "eval_cost": "2.99",
              "prefix_cost": "590.82",
              "data_read_per_join": "12K"
            },
            "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
2471 641 1648 S Aspect Ratio 20:9 0 30
2473 641 1648 S Aspect Ratio 20:9 0 30
2478 641 1648 S Aspect Ratio 20:9 0 30
2490 641 1648 S Aspect Ratio 20:9 0 30
2499 641 1649 S Aspect Ratio 21:9 0 30
2502 641 1648 S Aspect Ratio 20:9 0 30
2503 641 1648 S Aspect Ratio 20:9 0 30
2519 641 1648 S Aspect Ratio 20:9 0 30
2527 641 2936 S Aspect Ratio 20.5:9 0 30
2540 641 1648 S Aspect Ratio 20:9 0 30
2550 641 1648 S Aspect Ratio 20:9 0 30
2565 641 1648 S Aspect Ratio 20:9 0 30
2576 641 1648 S Aspect Ratio 20:9 0 30
2580 641 1648 S Aspect Ratio 20:9 0 30
2581 641 1648 S Aspect Ratio 20:9 0 30
2599 641 1648 S Aspect Ratio 20:9 0 30
2602 641 1648 S Aspect Ratio 20:9 0 30
2620 641 3017 S Aspect Ratio 20.6:9 0 30
2623 641 1648 S Aspect Ratio 20:9 0 30
2631 641 1648 S Aspect Ratio 20:9 0 30
2685 641 1648 S Aspect Ratio 20:9 0 30
10140 641 1648 S Aspect Ratio 20:9 0 30
2471 649 2896 S Display 6.73" 0 20
2473 649 2901 S Display 6.36" 0 20
2478 649 1536 S Display 6.67" 0 20
2490 649 1536 S Display 6.67" 0 20
2499 649 1661 S Display 6.86" 0 20
2502 649 2896 S Display 6.73" 0 20
2503 649 2901 S Display 6.36" 0 20
2519 649 2930 S Display 6,79" 0 20
2527 649 2935 S Display 6.88" 0 20
2540 649 1536 S Display 6.67" 0 20
2550 649 1536 S Display 6.67" 0 20
2565 649 1536 S Display 6.67" 0 20
2576 649 1536 S Display 6.67" 0 20
2580 649 1536 S Display 6.67" 0 20
2581 649 1536 S Display 6.67" 0 20
2599 649 1536 S Display 6.67" 0 20
2602 649 1536 S Display 6.67" 0 20
2620 649 3016 S Display 6.71" 0 20
2623 649 1536 S Display 6.67" 0 20
2631 649 1536 S Display 6.67" 0 20
2685 649 1536 S Display 6.67" 0 20
10140 649 8849 S Display 6.83" 0 20
2471 647 1573 S Front Camera 20MP 0 150
2473 647 1574 S Front Camera 32MP 0 150
2478 647 1574 S Front Camera 32MP 0 150
2490 647 1574 S Front Camera 32MP 0 150
2502 647 1574 S Front Camera 32MP 0 150
2527 647 1804 S Front Camera 13MP 0 150
2540 647 2956 S Front Camera 20MB 0 150
2550 647 1573 S Front Camera 20MP 0 150
2565 647 2952 S Front Camera 16MB 0 150
2576 647 1573 S Front Camera 20MP 0 150
2580 647 1574 S Front Camera 32MP 0 150
2581 647 1573 S Front Camera 20MP 0 150
2599 647 1573 S Front Camera 20MP 0 150
2602 647 1573 S Front Camera 20MP 0 150
2620 647 1854 S Front Camera 5MP 0 150
2623 647 3027 S Front Camera 16MP 0 150
2631 647 3027 S Front Camera 16MP 0 150
2685 647 3027 S Front Camera 16MP 0 150
10140 647 1574 S Front Camera 32MP 0 150
2471 652 1817 S GPU Adreno 740 0 80
2473 652 1827 S GPU Adreno 830 0 80
2478 652 2905 S GPU ARM Immortalis-G720 MC12 0 80
2490 652 2913 S GPU ARM Mali-G610 MC6 0 80
2499 652 2916 S GPU Qualcomm Adreno 0 80
2502 652 2916 S GPU Qualcomm Adreno 0 80
2503 652 2916 S GPU Qualcomm Adreno 0 80
2519 652 1797 S GPU Mali-G52 MC2 0 80
2527 652 2939 S GPU Mali-G57 MP1 0 80
2540 652 2953 S GPU Adreno 710 0 80
2550 652 2960 S GPU Mali‑G615 MC2 0 80
2565 652 2949 S GPU Mali‑G57 MC2 0 80
2576 652 2999 S GPU IMG BXM‑8‑256 0 80
2580 652 1827 S GPU Adreno 830 0 80
2581 652 1822 S GPU Adreno 750 0 80
2599 652 3009 S GPU Mali‑G720 MC7 GPU 0 80
2602 652 3013 S GPU Mali‑G615 MC2 GPU 0 80
2620 652 3020 S GPU PowerVR GE8320 0 80
2623 652 1817 S GPU Adreno 740 0 80
2631 652 3031 S GPU Mali‑G615 MC6 0 80
2685 652 2949 S GPU Mali‑G57 MC2 0 80
10140 652 0.00 9181 S GPU Immortalis-G925 0 80
2471 640 1620 S Operating System HyperOS 2 0 10
2473 640 1620 S Operating System HyperOS 2 0 10
2478 640 1629 S Operating System HyperOS 0 10
2490 640 1629 S Operating System HyperOS 0 10
2499 640 1629 S Operating System HyperOS 0 10
2502 640 1629 S Operating System HyperOS 0 10
2503 640 1629 S Operating System HyperOS 0 10
2519 640 1629 S Operating System HyperOS 0 10
2527 640 1629 S Operating System HyperOS 0 10
2540 640 1629 S Operating System HyperOS 0 10
2550 640 1629 S Operating System HyperOS 0 10
2565 640 1629 S Operating System HyperOS 0 10
2576 640 1629 S Operating System HyperOS 0 10
2580 640 1620 S Operating System HyperOS 2 0 10
2581 640 1620 S Operating System HyperOS 2 0 10
2599 640 1620 S Operating System HyperOS 2 0 10
2602 640 1629 S Operating System HyperOS 0 10
2620 640 1794 S Operating System Android 14 0 10
2623 640 1629 S Operating System HyperOS 0 10
2631 640 1629 S Operating System HyperOS 0 10
2685 640 1830 S Operating System Android 13 0 10
10140 640 1629 S Operating System HyperOS 0 10
2471 645 2898 S Ports 1 x USB Type-C 0 110
2473 645 2898 S Ports 1 x USB Type-C 0 110
2478 645 2898 S Ports 1 x USB Type-C 0 110
2490 645 2898 S Ports 1 x USB Type-C 0 110
2499 645 2898 S Ports 1 x USB Type-C 0 110
2502 645 2918 S Ports 1 x USB‑C 3.2 Gen 2 with DP & OTG 0 110
2503 645 2922 S Ports 1 x USB‑C 3.2 with OTG and DP includes IR blaster 0 110
2519 645 2934 S Ports 1 x USB‑C, 1 x 3.5 mm headphone jack 0 110
2527 645 2941 S Ports 1 x USB‑C, 3.5 mm headphone jack, infrared blaster 0 110
2540 645 2955 S Ports 1 x USB‑C 2.0 (PD, OTG) 0 110
2550 645 2961 S Ports 1 x USB‑C 2.0 (PD, OTG) 0 110
2565 645 2951 S Ports 1 x USB‑C; 3.5 mm headphone jack; Infrared blaster 0 110
2576 645 3001 S Ports 1 x USB‑C, 1 x 3.5 mm headphone jack, 1 x Stereo speakers, 1 x Infrared blaster 0 110
2580 645 3004 S Ports 1 x USB‑C (PD 3.0, QC 3+), 1 x IR blaster 0 110
2581 645 2961 S Ports 1 x USB‑C 2.0 (PD, OTG) 0 110
2599 645 3011 S Ports 1 x USB‑C 2.0 (PD, OTG), 1 x IR blaster 0 110
2602 645 2961 S Ports 1 x USB‑C 2.0 (PD, OTG) 0 110
2620 645 3021 S Ports 1 x USB‑C 2.0, 1 x 3.5 mm headphone jack 0 110
2623 645 3026 S Ports 1 x USB‑C 2.0 (PD/QC, OTG) 0 110
2631 645 3011 S Ports 1 x USB‑C 2.0 (PD, OTG), 1 x IR blaster 0 110
2685 645 2898 S Ports 1 x USB Type-C 0 110
10140 645 1.00 9184 S Ports 1 × USB Type-C 0 110
2471 651 1550 S Processor Snapdragon 8 Elite Mobile Platform 0 60
2473 651 1550 S Processor Snapdragon 8 Elite Mobile Platform 0 60
2478 651 1865 S Processor MediaTek Dimensity 9300+ 0 60
2490 651 2912 S Processor MediaTek Dimensity 8300 0 60
2499 651 2915 S Processor Qualcomm Snapdragon 8 Gen 3 0 60
2502 651 1551 S Processor Snapdragon 8 Gen 3 0 60
2503 651 1551 S Processor Snapdragon 8 Gen 3 0 60
2519 651 2932 S Processor MediaTek Helio G91‑Ultra 0 60
2527 651 2938 S Processor Unisoc T7250 0 60
2540 651 1549 S Processor Snapdragon 7s Gen 3 0 60
2550 651 2959 S Processor MediaTek Dimensity 7300‑Ultra 0 60
2565 651 2948 S Processor MediaTek Helio G99‑Ultra 0 60
2576 651 2998 S Processor MediaTek Dimensity 7025 Ultra 0 60
2580 651 1826 S Processor Snapdragon 8 Elite 0 60
2581 651 1551 S Processor Snapdragon 8 Gen 3 0 60
2599 651 3008 S Processor MediaTek Dimensity 8400‑Ultra 0 60
2602 651 3012 S Processor MediaTek Dimensity 7300‑Ultra 0 60
2620 651 3019 S Processor MediaTek Helio G36 0 60
2623 651 1834 S Processor Snapdragon 8 Gen 2 0 60
2631 651 3030 S Processor MediaTek Dimensity 8300‑Ultra 0 60
2685 651 2948 S Processor MediaTek Helio G99‑Ultra 0 60
10140 651 8851 S Processor MediaTek Dimensity 9400+ 0 60
2527 643 2870 S Ram 3GB 0 70
2620 643 1684 S Ram 4GB 0 70
2519 643 1526 S Ram 8GB 0 70
2565 643 1526 S Ram 8GB 0 70
2473 643 1587 S Ram 12GB 0 70
2478 643 1587 S Ram 12GB 0 70
2490 643 1587 S Ram 12GB 0 70
2499 643 1587 S Ram 12GB 0 70
2503 643 1587 S Ram 12GB 0 70
2540 643 1587 S Ram 12GB 0 70
2550 643 1587 S Ram 12GB 0 70
2576 643 1587 S Ram 12GB 0 70
2581 643 1587 S Ram 12GB 0 70
2599 643 1587 S Ram 12GB 0 70
2602 643 1587 S Ram 12GB 0 70
2631 643 1587 S Ram 12GB 0 70
2685 643 1587 S Ram 12GB 0 70
10140 643 1587 S Ram 12GB 0 70
2471 643 1592 S Ram 16GB 0 70
2502 643 1592 S Ram 16GB 0 70
2580 643 1592 S Ram 16GB 0 70
2623 643 1592 S Ram 16GB 0 70
2471 655 2899 S Rear Camera 200MP 0 140
2473 655 1582 S Rear Camera 50MP 0 140
2478 655 1582 S Rear Camera 50MP 0 140
2490 655 1582 S Rear Camera 50MP 0 140
2502 655 1582 S Rear Camera 50MP 0 140
2527 655 2942 S Rear Camera 108MB 0 140
2540 655 2899 S Rear Camera 200MP 0 140
2550 655 2899 S Rear Camera 200MP 0 140
2565 655 2899 S Rear Camera 200MP 0 140
2576 655 1582 S Rear Camera 50MP 0 140
2580 655 1582 S Rear Camera 50MP 0 140
2581 655 1582 S Rear Camera 50MP 0 140
2599 655 1582 S Rear Camera 50MP 0 140
2602 655 1582 S Rear Camera 50MP 0 140
2620 655 1853 S Rear Camera 8MP 0 140
2623 655 1582 S Rear Camera 50MP 0 140
2631 655 3032 S Rear Camera 64MP 0 140
2685 655 3032 S Rear Camera 64MP 0 140
10140 655 50.00 9185 S Rear Camera 50MP main + 50MP telephoto + 12MP ultrawide 0 140
2471 650 1540 S Refresh Rate 120Hz 0 40
2473 650 1540 S Refresh Rate 120Hz 0 40
2478 650 1541 S Refresh Rate 144Hz 0 40
2490 650 1541 S Refresh Rate 144Hz 0 40
2499 650 1540 S Refresh Rate 120Hz 0 40
2502 650 1540 S Refresh Rate 120Hz 0 40
2503 650 1540 S Refresh Rate 120Hz 0 40
2519 650 1847 S Refresh Rate 90Hz 0 40
2527 650 1540 S Refresh Rate 120Hz 0 40
2540 650 1540 S Refresh Rate 120Hz 0 40
2550 650 1540 S Refresh Rate 120Hz 0 40
2565 650 1540 S Refresh Rate 120Hz 0 40
2576 650 1540 S Refresh Rate 120Hz 0 40
2580 650 1540 S Refresh Rate 120Hz 0 40
2581 650 1540 S Refresh Rate 120Hz 0 40
2599 650 1540 S Refresh Rate 120Hz 0 40
2602 650 1540 S Refresh Rate 120Hz 0 40
2620 650 1847 S Refresh Rate 90Hz 0 40
2623 650 1540 S Refresh Rate 120Hz 0 40
2631 650 1540 S Refresh Rate 120Hz 0 40
2685 650 1540 S Refresh Rate 120Hz 0 40
10140 650 1541 S Refresh Rate 144Hz 0 40
2471 642 2897 S Resolution 3200 x 1440 0 50
2473 642 2920 S Resolution 2670 x 1200 0 50
2478 642 2904 S Resolution 2712 x 1220 0 50
2490 642 2911 S Resolution 2712 × 1220 0 50
2499 642 1662 S Resolution 2912 x 1224 0 50
2502 642 2917 S Resolution 3200×1440 0 50
2503 642 2920 S Resolution 2670 x 1200 0 50
2519 642 2931 S Resolution 2460 x 1080 0 50
2527 642 2937 S Resolution 1640 x 720 0 50
2540 642 2911 S Resolution 2712 × 1220 0 50
2550 642 2958 S Resolution 2712 × 1220 0 50
2565 642 2947 S Resolution 2400 x 1080 0 50
2576 642 2947 S Resolution 2400 x 1080 0 50
2580 642 2917 S Resolution 3200×1440 0 50
2581 642 2897 S Resolution 3200 x 1440 0 50
2599 642 2904 S Resolution 2712 x 1220 0 50
2602 642 2904 S Resolution 2712 x 1220 0 50
2620 642 3018 S Resolution 1650 x 720 0 50
2623 642 2897 S Resolution 3200 x 1440 0 50
2631 642 2904 S Resolution 2712 x 1220 0 50
2685 642 2947 S Resolution 2400 x 1080 0 50
10140 642 8850 S Resolution 2772 x 1280 0 50
2471 644 1798 S SIM Dual Nano-SIM 0 90
2473 644 1798 S SIM Dual Nano-SIM 0 90
2478 644 1798 S SIM Dual Nano-SIM 0 90
2490 644 1798 S SIM Dual Nano-SIM 0 90
2499 644 1798 S SIM Dual Nano-SIM 0 90
2502 644 1798 S SIM Dual Nano-SIM 0 90
2503 644 1798 S SIM Dual Nano-SIM 0 90
2519 644 1798 S SIM Dual Nano-SIM 0 90
2527 644 1798 S SIM Dual Nano-SIM 0 90
2540 644 2954 S SIM Dual Nano-SIM or Nano-SIM+eSIM 0 90
2550 644 2954 S SIM Dual Nano-SIM or Nano-SIM+eSIM 0 90
2565 644 2950 S SIM Dual Nano-Sim with Hybrid Slot 0 90
2576 644 3000 S SIM Dual Nano‑SIM or Nano + micro‑SD 0 90
2580 644 1798 S SIM Dual Nano-SIM 0 90
2581 644 1798 S SIM Dual Nano-SIM 0 90
2599 644 3010 S SIM Dual Nano‑SIM 0 90
2602 644 1798 S SIM Dual Nano-SIM 0 90
2620 644 2950 S SIM Dual Nano-Sim with Hybrid Slot 0 90
2623 644 1798 S SIM Dual Nano-SIM 0 90
2631 644 1798 S SIM Dual Nano-SIM 0 90
2685 644 1798 S SIM Dual Nano-SIM 0 90
10140 644 0.00 9182 S SIM Dual Nano-SIM (or Dual SIM + eSIM options) 0 90
2527 648 1687 S التخزين 64GB 0 170
2620 648 1561 S التخزين 128GB 0 170
2519 648 1562 S التخزين 256GB 0 170
2565 648 1562 S التخزين 256GB 0 170
2576 648 1562 S التخزين 256GB 0 170
2471 648 1563 S التخزين 512GB 0 170
2473 648 1563 S التخزين 512GB 0 170
2490 648 1563 S التخزين 512GB 0 170
2499 648 1563 S التخزين 512GB 0 170
2502 648 1563 S التخزين 512GB 0 170
2503 648 1563 S التخزين 512GB 0 170
2540 648 1563 S التخزين 512GB 0 170
2550 648 1563 S التخزين 512GB 0 170
2580 648 1563 S التخزين 512GB 0 170
2581 648 1563 S التخزين 512GB 0 170
2599 648 1563 S التخزين 512GB 0 170
2602 648 1563 S التخزين 512GB 0 170
2631 648 1563 S التخزين 512GB 0 170
2685 648 1563 S التخزين 512GB 0 170
10140 648 1563 S التخزين 512GB 0 170
2478 648 1564 S التخزين 1TB 0 170
2623 648 1564 S التخزين 1TB 0 170
2471 653 1568 S باتري 5,410mAh 0 100
2473 653 2902 S باتري 5,240mAh 0 100
2478 653 2906 S باتري 5,000mAh 0 100
2490 653 2107 S باتري 5,000 mAh 0 100
2499 653 1569 S باتري 4,780mAh 0 100
2502 653 2906 S باتري 5,000mAh 0 100
2503 653 2921 S باتري 4,610 mAh 0 100
2519 653 2933 S باتري 5,030mAh 0 100
2527 653 2940 S باتري 5,200 mAh 0 100
2540 653 1567 S باتري 5,110mAh 0 100
2550 653 1567 S باتري 5,110mAh 0 100
2565 653 2906 S باتري 5,000mAh 0 100
2576 653 1567 S باتري 5,110mAh 0 100
2580 653 3003 S باتري 5,300mAh 0 100
2581 653 1566 S باتري 6,000mAh 0 100
2599 653 1566 S باتري 6,000mAh 0 100
2602 653 1567 S باتري 5,110mAh 0 100
2620 653 2906 S باتري 5,000mAh 0 100
2623 653 2906 S باتري 5,000mAh 0 100
2631 653 2906 S باتري 5,000mAh 0 100
2685 653 2906 S باتري 5,000mAh 0 100
10140 653 5500.00 9183 S باتري 5500mAh 0 100
2471 656 1641 S لون Silver Chrome 0 160
2473 656 2903 S لون Liquid Silver 0 160
2478 656 1653 S لون Titan Grey 0 160
2490 656 2910 S لون Lemon Green 0 160
2499 656 1597 S لون Lavender Purple 0 160
2502 656 1559 S لون White 0 160
2503 656 2919 S لون Jade Green 0 160
2519 656 2758 S لون Gold 0 160
2527 656 1600 S لون Blue 0 160
2540 656 1597 S لون Lavender Purple 0 160
2550 656 2441 S لون Coral Green 0 160
2565 656 2985 S لون Aurora Purple 0 160
2576 656 1596 S لون Green 0 160
2580 656 1560 S لون Black 0 160
2581 656 1560 S لون Black 0 160
2599 656 1595 S لون Yellow 0 160
2602 656 1560 S لون Black 0 160
2620 656 1559 S لون White 0 160
2623 656 1559 S لون White 0 160
2631 656 1595 S لون Yellow 0 160
2685 656 1609 S لون Purple 0 160
10140 656 1560 S لون Black 0 160
2471 657 1666 E ماركة Xiaomi 0 0
2473 657 1666 E ماركة Xiaomi 0 0
2478 657 1666 E ماركة Xiaomi 0 0
2490 657 1666 E ماركة Xiaomi 0 0
2499 657 1666 E ماركة Xiaomi 0 0
2502 657 1666 E ماركة Xiaomi 0 0
2503 657 1666 E ماركة Xiaomi 0 0
2519 657 1666 E ماركة Xiaomi 0 0
2527 657 1666 E ماركة Xiaomi 0 0
2540 657 1666 E ماركة Xiaomi 0 0
2550 657 1666 E ماركة Xiaomi 0 0
2565 657 1666 E ماركة Xiaomi 0 0
2576 657 1666 E ماركة Xiaomi 0 0
2580 657 1666 E ماركة Xiaomi 0 0
2581 657 1666 E ماركة Xiaomi 0 0
2599 657 1666 E ماركة Xiaomi 0 0
2602 657 1666 E ماركة Xiaomi 0 0
2620 657 1666 E ماركة Xiaomi 0 0
2623 657 1666 E ماركة Xiaomi 0 0
2631 657 1666 E ماركة Xiaomi 0 0
2685 657 1666 E ماركة Xiaomi 0 0
10140 657 1666 E ماركة Xiaomi 0 0