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 = 'en' 
  LEFT JOIN cscart_product_feature_variants fv ON fv.variant_id = v.variant_id 
  LEFT JOIN cscart_product_feature_variant_descriptions as vd ON vd.variant_id = fv.variant_id 
  AND vd.lang_code = 'en' 
  LEFT JOIN cscart_product_features as gf ON gf.feature_id = f.parent_id 
  AND gf.feature_type = 'G' 
WHERE 
  f.status IN ('A') 
  AND v.product_id in (
    1, 228, 8, 9, 10, 8483, 4, 1532, 8499, 8502, 
    8501, 2459, 1528, 2432, 2455, 1517, 
    2438, 8498, 8484, 8497, 8485, 1538, 
    8488, 8486, 8492, 8487
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(174, f.categories_path) 
    OR FIND_IN_SET(190, f.categories_path) 
    OR FIND_IN_SET(372, f.categories_path) 
    OR FIND_IN_SET(453, f.categories_path) 
    OR FIND_IN_SET(454, f.categories_path)
  ) 
  AND IF(
    f.parent_id, 
    (
      SELECT 
        status 
      FROM 
        cscart_product_features as df 
      WHERE 
        df.feature_id = f.parent_id
    ), 
    'A'
  ) IN ('A') 
  AND (
    v.variant_id != 0 
    OR (
      f.feature_type != 'C' 
      AND v.value != ''
    ) 
    OR (f.feature_type = 'C') 
    OR v.value_int != ''
  ) 
  AND v.lang_code = 'en' 
ORDER BY 
  fd.description, 
  fv.position

Query time 0.00924

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "520.79"
    },
    "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": "product_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 847,
            "rows_produced_per_join": 275,
            "filtered": "32.52",
            "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (1,228,8,9,10,8483,4,1532,8499,8502,8501,2459,1528,2432,2455,1517,2438,8498,8484,8497,8485,1538,8488,8486,8492,8487))",
            "cost_info": {
              "read_cost": "360.12",
              "eval_cost": "27.54",
              "prefix_cost": "387.66",
              "data_read_per_join": "213K"
            },
            "used_columns": [
              "feature_id",
              "product_id",
              "variant_id",
              "value",
              "value_int",
              "lang_code"
            ],
            "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'en') and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))"
          }
        },
        {
          "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": 26,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "68.85",
              "eval_cost": "2.62",
              "prefix_cost": "484.05",
              "data_read_per_join": "11K"
            },
            "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(174,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(190,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(372,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(453,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(454,`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": 26,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "6.56",
              "eval_cost": "2.62",
              "prefix_cost": "493.24",
              "data_read_per_join": "59K"
            },
            "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": 26,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "6.56",
              "eval_cost": "2.62",
              "prefix_cost": "502.42",
              "data_read_per_join": "29K"
            },
            "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": 26,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "6.56",
              "eval_cost": "2.62",
              "prefix_cost": "511.60",
              "data_read_per_join": "79K"
            },
            "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": 26,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "6.56",
              "eval_cost": "2.62",
              "prefix_cost": "520.79",
              "data_read_per_join": "11K"
            },
            "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
1 641 1647 S Aspect Ratio 16:9 0 30
4 641 1647 S Aspect Ratio 16:9 0 30
8 641 1647 S Aspect Ratio 16:9 0 30
9 641 1647 S Aspect Ratio 16:9 0 30
10 641 1647 S Aspect Ratio 16:9 0 30
228 641 1647 S Aspect Ratio 16:9 0 30
1517 641 1647 S Aspect Ratio 16:9 0 30
1528 641 1647 S Aspect Ratio 16:9 0 30
1532 641 1647 S Aspect Ratio 16:9 0 30
1538 641 1647 S Aspect Ratio 16:9 0 30
2432 641 1647 S Aspect Ratio 16:9 0 30
2438 641 1647 S Aspect Ratio 16:9 0 30
2455 641 1647 S Aspect Ratio 16:9 0 30
2459 641 1647 S Aspect Ratio 16:9 0 30
8483 641 1647 S Aspect Ratio 16:9 0 30
8484 641 1647 S Aspect Ratio 16:9 0 30
8485 641 1647 S Aspect Ratio 16:9 0 30
8486 641 1647 S Aspect Ratio 16:9 0 30
8487 641 1647 S Aspect Ratio 16:9 0 30
8488 641 1647 S Aspect Ratio 16:9 0 30
8492 641 1647 S Aspect Ratio 16:9 0 30
8497 641 1647 S Aspect Ratio 16:9 0 30
8498 641 1647 S Aspect Ratio 16:9 0 30
8499 641 1647 S Aspect Ratio 16:9 0 30
8501 641 1647 S Aspect Ratio 16:9 0 30
8502 641 1647 S Aspect Ratio 16:9 0 30
1 657 1668 E Brand LG 0 0
4 657 1668 E Brand LG 0 0
8 657 1668 E Brand LG 0 0
9 657 1668 E Brand LG 0 0
10 657 1668 E Brand LG 0 0
228 657 1668 E Brand LG 0 0
1517 657 1667 E Brand Samsung 0 0
1528 657 1667 E Brand Samsung 0 0
1532 657 1667 E Brand Samsung 0 0
1538 657 1667 E Brand Samsung 0 0
2432 657 1666 E Brand Xiaomi 0 0
2438 657 1666 E Brand Xiaomi 0 0
2455 657 1666 E Brand Xiaomi 0 0
2459 657 1666 E Brand Xiaomi 0 0
8483 657 1666 E Brand Xiaomi 0 0
8484 657 1666 E Brand Xiaomi 0 0
8485 657 1666 E Brand Xiaomi 0 0
8486 657 1666 E Brand Xiaomi 0 0
8487 657 1666 E Brand Xiaomi 0 0
8488 657 1666 E Brand Xiaomi 0 0
8492 657 1666 E Brand Xiaomi 0 0
8497 657 1667 E Brand Samsung 0 0
8498 657 1667 E Brand Samsung 0 0
8499 657 1667 E Brand Samsung 0 0
8501 657 1667 E Brand Samsung 0 0
8502 657 1667 E Brand Samsung 0 0
1 656 1560 S Color Black 0 160
4 656 1560 S Color Black 0 160
8 656 1560 S Color Black 0 160
9 656 1560 S Color Black 0 160
10 656 1560 S Color Black 0 160
228 656 1674 S Color Brown 0 160
1517 656 1560 S Color Black 0 160
1528 656 1560 S Color Black 0 160
1532 656 1560 S Color Black 0 160
1538 656 1560 S Color Black 0 160
2432 656 1560 S Color Black 0 160
2438 656 1560 S Color Black 0 160
2455 656 1889 S Color Dark Gray 0 160
2459 656 1560 S Color Black 0 160
8483 656 1560 S Color Black 0 160
8484 656 1560 S Color Black 0 160
8485 656 1560 S Color Black 0 160
8486 656 1889 S Color Dark Gray 0 160
8487 656 1889 S Color Dark Gray 0 160
8488 656 1889 S Color Dark Gray 0 160
8492 656 1560 S Color Black 0 160
8497 656 1560 S Color Black 0 160
8498 656 1560 S Color Black 0 160
8499 656 1560 S Color Black 0 160
8501 656 1560 S Color Black 0 160
8502 656 1560 S Color Black 0 160
2432 659 2596 S Connectivity Bluetooth 5.0, Wi-Fi 2.4GHz/5GHz 0 152
2438 659 2596 S Connectivity Bluetooth 5.0, Wi-Fi 2.4GHz/5GHz 0 152
8483 659 2596 S Connectivity Bluetooth 5.0, Wi-Fi 2.4GHz/5GHz 0 152
8484 659 2596 S Connectivity Bluetooth 5.0, Wi-Fi 2.4GHz/5GHz 0 152
8485 659 2596 S Connectivity Bluetooth 5.0, Wi-Fi 2.4GHz/5GHz 0 152
2432 664 2864 S Frequency Bands Dual-band 2.4GHz/5GHz 0 230
2438 664 2864 S Frequency Bands Dual-band 2.4GHz/5GHz 0 230
2459 664 2864 S Frequency Bands Dual-band 2.4GHz/5GHz 0 230
8483 664 2864 S Frequency Bands Dual-band 2.4GHz/5GHz 0 230
8484 664 2864 S Frequency Bands Dual-band 2.4GHz/5GHz 0 230
8485 664 2864 S Frequency Bands Dual-band 2.4GHz/5GHz 0 230
8492 664 2864 S Frequency Bands Dual-band 2.4GHz/5GHz 0 230
2432 652 2586 S GPU Mali-G52 MC1 0 80
2438 652 2586 S GPU Mali-G52 MC1 0 80
2455 652 2586 S GPU Mali-G52 MC1 0 80
2459 652 2586 S GPU Mali-G52 MC1 0 80
8483 652 2586 S GPU Mali-G52 MC1 0 80
8484 652 2586 S GPU Mali-G52 MC1 0 80
8485 652 2586 S GPU Mali-G52 MC1 0 80
8486 652 2586 S GPU Mali-G52 MC1 0 80
8487 652 2586 S GPU Mali-G52 MC1 0 80
8488 652 2586 S GPU Mali-G52 MC1 0 80
8492 652 2586 S GPU Mali-G52 MC1 0 80
1 640 1676 S Operating System WebOS 24 0 10
4 640 1676 S Operating System WebOS 24 0 10
8 640 1676 S Operating System WebOS 24 0 10
9 640 1676 S Operating System WebOS 24 0 10
10 640 1676 S Operating System WebOS 24 0 10
228 640 1676 S Operating System WebOS 24 0 10
1517 640 1926 S Operating System Tizen OS 0 10
1528 640 1926 S Operating System Tizen OS 0 10
1538 640 1926 S Operating System Tizen OS 0 10
2432 640 2584 S Operating System Google TV 0 10
2438 640 2584 S Operating System Google TV 0 10
2455 640 2584 S Operating System Google TV 0 10
2459 640 2584 S Operating System Google TV 0 10
8483 640 2584 S Operating System Google TV 0 10
8484 640 2584 S Operating System Google TV 0 10
8485 640 2584 S Operating System Google TV 0 10
8486 640 2584 S Operating System Google TV 0 10
8487 640 2584 S Operating System Google TV 0 10
8488 640 2584 S Operating System Google TV 0 10
8492 640 2584 S Operating System Google TV 0 10
8497 640 1926 S Operating System Tizen OS 0 10
8498 640 1926 S Operating System Tizen OS 0 10
1 645 1678 S Ports 2 USB-A, 3 HDMI, LAN, TV Aerial, Satellite, Optical Audio OUT 0 110
4 645 1672 S Ports 2 USB-A, 4 HDMI, LAN, TV Aerial, Satellite, Optical Audio OUT 0 110
8 645 1675 S Ports 3 USB-A, 4 HDMI, LAN, TV Aerial, Satellite, Optical Audio OUT 0 110
9 645 1672 S Ports 2 USB-A, 4 HDMI, LAN, TV Aerial, Satellite, Optical Audio OUT 0 110
10 645 1672 S Ports 2 USB-A, 4 HDMI, LAN, TV Aerial, Satellite, Optical Audio OUT 0 110
228 645 1675 S Ports 3 USB-A, 4 HDMI, LAN, TV Aerial, Satellite, Optical Audio OUT 0 110
1517 645 1932 S Ports 4 HDMI, 3 USB-A, 1 LAN, 1 Digital Audio, 1 × RF Input 0 110
1528 645 1935 S Ports 4 HDMI, 2 USB-A, 1 LAN, 1 Digital Audio, 1 RF Input 0 110
1532 645 1929 S Ports 3 HDMI, 2 USB-A, 1 LAN, 1 × Digital Audio, 1 × RF Input 0 110
1538 645 1929 S Ports 3 HDMI, 2 USB-A, 1 LAN, 1 × Digital Audio, 1 × RF Input 0 110
2432 645 3005 S Ports 1 x AC socket, 2 x RF (antenna) socket (T2 IEC/S2 threaded), 1 x CI+ card slot, 1 x AV (3‑in‑1) input, 2 × HDMI 2.0, 1 x HDMI 2.1, 1 x USB, 1 x LAN RJ45, 1 x Optical (digital audio) 0 110
2438 645 3007 S Ports 1 x AC power socket, 1 x RF (antenna) socket, 2 × HDMI 2.0, 1 x HDMI 2.1, 1 x USB, 1 x Ethernet (LAN RJ45), 1 x Optical (Toslink) audio out, 1 x AV (composite input) 3-in-1, 1 x CI+ card slot 0 110
2455 645 2887 S Ports 3 x HDMI, 2 x USB, 1 x Ethernet, 1 x Optical Audio Out, 1 x AV Input, 1 x RF Input, 1 x Headphone Jack 0 110
2459 645 2888 S Ports 3 x HDMI (1 with eARC), 2 x USB 2.0, 1 x Ethernet, 1 x Optical Audio Out, 1 x Composite In (AV), 1 x CI+ Slot, 1 x 3.5mm Headphone Jack 0 110
8483 645 3005 S Ports 1 x AC socket, 2 x RF (antenna) socket (T2 IEC/S2 threaded), 1 x CI+ card slot, 1 x AV (3‑in‑1) input, 2 × HDMI 2.0, 1 x HDMI 2.1, 1 x USB, 1 x LAN RJ45, 1 x Optical (digital audio) 0 110
8484 645 3005 S Ports 1 x AC socket, 2 x RF (antenna) socket (T2 IEC/S2 threaded), 1 x CI+ card slot, 1 x AV (3‑in‑1) input, 2 × HDMI 2.0, 1 x HDMI 2.1, 1 x USB, 1 x LAN RJ45, 1 x Optical (digital audio) 0 110
8485 645 3005 S Ports 1 x AC socket, 2 x RF (antenna) socket (T2 IEC/S2 threaded), 1 x CI+ card slot, 1 x AV (3‑in‑1) input, 2 × HDMI 2.0, 1 x HDMI 2.1, 1 x USB, 1 x LAN RJ45, 1 x Optical (digital audio) 0 110
8486 645 2887 S Ports 3 x HDMI, 2 x USB, 1 x Ethernet, 1 x Optical Audio Out, 1 x AV Input, 1 x RF Input, 1 x Headphone Jack 0 110
8487 645 2887 S Ports 3 x HDMI, 2 x USB, 1 x Ethernet, 1 x Optical Audio Out, 1 x AV Input, 1 x RF Input, 1 x Headphone Jack 0 110
8488 645 2887 S Ports 3 x HDMI, 2 x USB, 1 x Ethernet, 1 x Optical Audio Out, 1 x AV Input, 1 x RF Input, 1 x Headphone Jack 0 110
8492 645 2888 S Ports 3 x HDMI (1 with eARC), 2 x USB 2.0, 1 x Ethernet, 1 x Optical Audio Out, 1 x Composite In (AV), 1 x CI+ Slot, 1 x 3.5mm Headphone Jack 0 110
8497 645 1932 S Ports 4 HDMI, 3 USB-A, 1 LAN, 1 Digital Audio, 1 × RF Input 0 110
8498 645 1932 S Ports 4 HDMI, 3 USB-A, 1 LAN, 1 Digital Audio, 1 × RF Input 0 110
8499 645 1929 S Ports 3 HDMI, 2 USB-A, 1 LAN, 1 × Digital Audio, 1 × RF Input 0 110
8501 645 1929 S Ports 3 HDMI, 2 USB-A, 1 LAN, 1 × Digital Audio, 1 × RF Input 0 110
8502 645 1929 S Ports 3 HDMI, 2 USB-A, 1 LAN, 1 × Digital Audio, 1 × RF Input 0 110
2432 666 2486 S Power Support 100–240 V AC, 0.35 A input 0 250
2438 666 2866 S Power Support 200 – 240 V AC, 50/60 Hz 0 250
2459 666 2866 S Power Support 200 – 240 V AC, 50/60 Hz 0 250
8483 666 2486 S Power Support 100–240 V AC, 0.35 A input 0 250
8484 666 2486 S Power Support 100–240 V AC, 0.35 A input 0 250
8485 666 2486 S Power Support 100–240 V AC, 0.35 A input 0 250
8492 666 2866 S Power Support 200 – 240 V AC, 50/60 Hz 0 250
1 651 1677 S Processor α5 AI Processor 4K Gen7 0 60
9 651 1677 S Processor α5 AI Processor 4K Gen7 0 60
228 651 1673 S Processor α9 AI Processor 4K Gen7 0 60
1517 651 1931 S Processor Neural Quantum Processor 4K 0 60
1528 651 1934 S Processor Quantum Processor 4K with AI Upscaling 0 60
1532 651 1933 S Processor Quantum Processor 4K 0 60
1538 651 1928 S Processor Crystal Processor 4K 0 60
2432 651 2863 S Processor Quad cortex A55 0 60
2438 651 2863 S Processor Quad cortex A55 0 60
2455 651 2585 S Processor Quad-core A55 0 60
2459 651 2585 S Processor Quad-core A55 0 60
8483 651 2863 S Processor Quad cortex A55 0 60
8484 651 2863 S Processor Quad cortex A55 0 60
8485 651 2863 S Processor Quad cortex A55 0 60
8486 651 2585 S Processor Quad-core A55 0 60
8487 651 2585 S Processor Quad-core A55 0 60
8488 651 2585 S Processor Quad-core A55 0 60
8492 651 2585 S Processor Quad-core A55 0 60
8497 651 1931 S Processor Neural Quantum Processor 4K 0 60
8498 651 1931 S Processor Neural Quantum Processor 4K 0 60
8499 651 1933 S Processor Quantum Processor 4K 0 60
8501 651 1933 S Processor Quantum Processor 4K 0 60
8502 651 1933 S Processor Quantum Processor 4K 0 60
4 651 1671 S Processor α8 AI Processor 4K 0 60
8 651 1671 S Processor α8 AI Processor 4K 0 60
10 651 1671 S Processor α8 AI Processor 4K 0 60
2432 643 1711 S Ram 2GB 0 70
2438 643 1711 S Ram 2GB 0 70
2455 643 1711 S Ram 2GB 0 70
2459 643 1711 S Ram 2GB 0 70
8483 643 1711 S Ram 2GB 0 70
8484 643 1711 S Ram 2GB 0 70
8485 643 1711 S Ram 2GB 0 70
8486 643 1711 S Ram 2GB 0 70
8487 643 1711 S Ram 2GB 0 70
8488 643 1711 S Ram 2GB 0 70
8492 643 1711 S Ram 2GB 0 70
1 650 1539 S Refresh Rate 60Hz 0 40
4 650 1540 S Refresh Rate 120Hz 0 40
8 650 1540 S Refresh Rate 120Hz 0 40
9 650 1539 S Refresh Rate 60Hz 0 40
10 650 1540 S Refresh Rate 120Hz 0 40
228 650 1540 S Refresh Rate 120Hz 0 40
1517 650 1540 S Refresh Rate 120Hz 0 40
1528 650 1733 S Refresh Rate 100Hz 0 40
1532 650 1539 S Refresh Rate 60Hz 0 40
1538 650 1927 S Refresh Rate 55" model: 60Hz, 75", "85" model: 120Hz 0 40
2432 650 1539 S Refresh Rate 60Hz 0 40
2438 650 1539 S Refresh Rate 60Hz 0 40
2455 650 1539 S Refresh Rate 60Hz 0 40
2459 650 1539 S Refresh Rate 60Hz 0 40
8483 650 1539 S Refresh Rate 60Hz 0 40
8484 650 1539 S Refresh Rate 60Hz 0 40
8485 650 1539 S Refresh Rate 60Hz 0 40
8486 650 1539 S Refresh Rate 60Hz 0 40
8487 650 1539 S Refresh Rate 60Hz 0 40
8488 650 1539 S Refresh Rate 60Hz 0 40
8492 650 1539 S Refresh Rate 60Hz 0 40
8497 650 1540 S Refresh Rate 120Hz 0 40
8498 650 1540 S Refresh Rate 120Hz 0 40
8499 650 1539 S Refresh Rate 60Hz 0 40
8501 650 1539 S Refresh Rate 60Hz 0 40
8502 650 1539 S Refresh Rate 60Hz 0 40
1 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
4 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
9 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
10 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
228 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
1517 642 1930 S Resolution 3840-by-2160-pixel 0 50
1528 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
1532 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
1538 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
2432 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
2438 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
2455 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
2459 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8483 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8484 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8485 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8486 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8487 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8488 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8492 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8497 642 1930 S Resolution 3840-by-2160-pixel 0 50
8498 642 1930 S Resolution 3840-by-2160-pixel 0 50
8499 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8501 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
8502 642 1590 S Resolution 3840 x 2160 (4K UHD) 0 50
2432 648 2588 S Storage 8GB 0 170
2438 648 2588 S Storage 8GB 0 170
2459 648 2588 S Storage 8GB 0 170
8483 648 2588 S Storage 8GB 0 170
8484 648 2588 S Storage 8GB 0 170
8485 648 2588 S Storage 8GB 0 170
8492 648 2588 S Storage 8GB 0 170
8483 766 8560 S TV Display 43" 0 0
8486 766 8560 S TV Display 43" 0 0
2438 766 8551 S TV Display 50" 0 0
8492 766 8551 S TV Display 50" 0 0
1517 766 8557 S TV Display 55" 0 0
8484 766 8557 S TV Display 55" 0 0
8487 766 8557 S TV Display 55" 0 0
8501 766 8557 S TV Display 55" 0 0
4 766 8558 S TV Display 65" 0 0
8 766 8558 S TV Display 65" 0 0
9 766 8558 S TV Display 65" 0 0
10 766 8558 S TV Display 65" 0 0
228 766 8558 S TV Display 65" 0 0
1528 766 8558 S TV Display 65" 0 0
1532 766 8558 S TV Display 65" 0 0
1538 766 8558 S TV Display 65" 0 0
2459 766 8558 S TV Display 65" 0 0
8485 766 8558 S TV Display 65" 0 0
8488 766 8558 S TV Display 65" 0 0
8498 766 8558 S TV Display 65" 0 0
1 766 8553 S TV Display 75" 0 0
2432 766 8553 S TV Display 75" 0 0
2455 766 8553 S TV Display 75" 0 0
8502 766 8553 S TV Display 75" 0 0
8497 766 8805 S TV Display 77" 0 0
8499 766 8556 S TV Display 85" 0 0
2432 662 1946 S Wi-Fi Standard Wi-Fi 6 (802.11ax) 0 210
2438 662 1946 S Wi-Fi Standard Wi-Fi 6 (802.11ax) 0 210
8483 662 1946 S Wi-Fi Standard Wi-Fi 6 (802.11ax) 0 210
8484 662 1946 S Wi-Fi Standard Wi-Fi 6 (802.11ax) 0 210
8485 662 1946 S Wi-Fi Standard Wi-Fi 6 (802.11ax) 0 210