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 (
    4176, 4357, 4287, 4612, 4187, 4639, 4210, 
    4265, 4598, 4503, 4613, 4504, 4635, 
    4466, 4160, 4164, 4335, 4553, 4592, 
    4600, 4340, 4180, 4344, 4591, 4282, 
    4461, 4590, 4178, 4501, 4302, 4616, 
    4296, 4352, 4283, 4353
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(513, f.categories_path) 
    OR FIND_IN_SET(515, 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.01318

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "417.99"
    },
    "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": 674,
            "rows_produced_per_join": 219,
            "filtered": "32.52",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (4176,4357,4287,4612,4187,4639,4210,4265,4598,4503,4613,4504,4635,4466,4160,4164,4335,4553,4592,4600,4340,4180,4344,4591,4282,4461,4590,4178,4501,4302,4616,4296,4352,4283,4353)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'en')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "290.14",
              "eval_cost": "21.92",
              "prefix_cost": "312.06",
              "data_read_per_join": "169K"
            },
            "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": 20,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "54.79",
              "eval_cost": "2.09",
              "prefix_cost": "388.76",
              "data_read_per_join": "8K"
            },
            "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(513,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(515,`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": 20,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "5.22",
              "eval_cost": "2.09",
              "prefix_cost": "396.07",
              "data_read_per_join": "47K"
            },
            "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": 20,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "5.22",
              "eval_cost": "2.09",
              "prefix_cost": "403.38",
              "data_read_per_join": "23K"
            },
            "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": 20,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "5.22",
              "eval_cost": "2.09",
              "prefix_cost": "410.69",
              "data_read_per_join": "63K"
            },
            "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": 20,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "5.22",
              "eval_cost": "2.09",
              "prefix_cost": "418.00",
              "data_read_per_join": "8K"
            },
            "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
4160 657 5176 E Brand ADATA 0 0
4164 657 5225 E Brand MSI 0 0
4176 657 5176 E Brand ADATA 0 0
4178 657 5176 E Brand ADATA 0 0
4180 657 5176 E Brand ADATA 0 0
4187 657 5176 E Brand ADATA 0 0
4210 657 5176 E Brand ADATA 0 0
4265 657 5176 E Brand ADATA 0 0
4282 657 5176 E Brand ADATA 0 0
4283 657 5176 E Brand ADATA 0 0
4287 657 5176 E Brand ADATA 0 0
4296 657 5176 E Brand ADATA 0 0
4302 657 5176 E Brand ADATA 0 0
4335 657 5176 E Brand ADATA 0 0
4340 657 5176 E Brand ADATA 0 0
4344 657 5176 E Brand ADATA 0 0
4352 657 5176 E Brand ADATA 0 0
4353 657 5176 E Brand ADATA 0 0
4357 657 5176 E Brand ADATA 0 0
4461 657 5176 E Brand ADATA 0 0
4466 657 5176 E Brand ADATA 0 0
4501 657 5176 E Brand ADATA 0 0
4503 657 5176 E Brand ADATA 0 0
4504 657 5176 E Brand ADATA 0 0
4553 657 5176 E Brand ADATA 0 0
4590 657 5176 E Brand ADATA 0 0
4591 657 5176 E Brand ADATA 0 0
4592 657 5176 E Brand ADATA 0 0
4598 657 5176 E Brand ADATA 0 0
4600 657 5176 E Brand ADATA 0 0
4612 657 5176 E Brand ADATA 0 0
4613 657 5176 E Brand ADATA 0 0
4616 657 5176 E Brand ADATA 0 0
4635 657 5176 E Brand ADATA 0 0
4639 657 5176 E Brand ADATA 0 0
4160 656 1560 S Color Black 0 160
4164 656 1560 S Color Black 0 160
4176 656 5259 S Color Black with stylish heatsink design 0 160
4178 656 5267 S Color Black with heatsink design 0 160
4180 656 5274 S Color Black with blue heatsink design 0 160
4187 656 1560 S Color Black 0 160
4210 656 1560 S Color Black 0 160
4265 656 1560 S Color Black 0 160
4282 656 1560 S Color Black 0 160
4283 656 1560 S Color Black 0 160
4287 656 1560 S Color Black 0 160
4296 656 2077 S Color Grey 0 160
4302 656 1560 S Color Black 0 160
4335 656 1560 S Color Black 0 160
4340 656 1560 S Color Black 0 160
4344 656 1560 S Color Black 0 160
4352 656 1560 S Color Black 0 160
4353 656 2273 S Color Arctic Grey 0 160
4357 656 5517 S Color Black and blue 0 160
4461 656 1560 S Color Black 0 160
4466 656 1560 S Color Black 0 160
4501 656 1600 S Color Blue 0 160
4503 656 1560 S Color Black 0 160
4504 656 1560 S Color Black 0 160
4553 656 5636 S Color Black with gold accents 0 160
4590 656 1560 S Color Black 0 160
4591 656 1560 S Color Black 0 160
4592 656 2441 S Color Coral Green 0 160
4598 656 1560 S Color Black 0 160
4600 656 1914 S Color Gray 0 160
4612 656 5267 S Color Black with heatsink design 0 160
4613 656 5267 S Color Black with heatsink design 0 160
4616 656 1560 S Color Black 0 160
4635 656 1560 S Color Black 0 160
4639 656 1560 S Color Black 0 160
4160 727 5192 S Data Security supports OS-based password protection and encryption if configured 0 0
4164 727 5226 S Data Security Supports OS-based encryption and secure data management if configured 0 0
4176 727 5256 S Data Security LDPC error correction technology for reliable data protection 0 0
4178 727 5264 S Data Security LDPC ECC for reliable data protection 0 0
4180 727 5271 S Data Security LDPC ECC error correction and wear-leveling for reliable data protection 0 0
4187 727 5287 S Data Security Reliable 3D NAND technology with error correction for data protection 0 0
4210 727 5336 S Data Security 3D NAND technology for durability and reliability 0 0
4265 727 5408 S Data Security LDPC ECC error correction for data integrit 0 0
4282 727 5435 S Data Security LDPC ECC technology ensures data integrity and reliability 0 0
4283 727 5435 S Data Security LDPC ECC technology ensures data integrity and reliability 0 0
4287 727 5447 S Data Security LDPC ECC technology for reliable data integrity 0 0
4296 727 5463 S Data Security Supports AES 256-bit encryption for safe data protection 0 0
4302 727 5476 S Data Security Not specified 0 0
4335 727 5484 S Data Security No built-in encryption or password protection 0 0
4340 727 5479 S Data Security N/A 0 0
4344 727 5491 S Data Security LDPC ECC (error correction) for data integrity 0 0
4352 727 5183 S Data Security AES 256-bit encryption support 0 0
4353 727 5505 S Data Security AES 256-bit encryption suppor 0 0
4357 727 5514 S Data Security Supports AES 256-bit encryption 0 0
4461 727 5542 S Data Security Supports AES 256-bit encryption and LDPC ECC 0 0
4466 727 5690 S Data Security Built-in AES 256-bit encryption support protects data from unauthorized access 0 0
4501 727 5567 S Data Security Supports OS based password protection and encryption if configured 0 0
4503 727 5567 S Data Security Supports OS based password protection and encryption if configured 0 0
4504 727 5567 S Data Security Supports OS based password protection and encryption if configured 0 0
4553 727 5634 S Data Security LDPC ECC, HMB (Host Memory Buffer) 0 0
4590 727 5728 S Data Security Standard flash storage, no hardware encryption 0 0
4591 727 5722 S Data Security Standard flash storage 0 0
4592 727 5731 S Data Security Standard SSD 0 0
4598 727 5743 S Data Security Standard SSD, no built-in hardware encryption 0 0
4600 727 5743 S Data Security Standard SSD, no built-in hardware encryption 0 0
4612 727 5773 S Data Security Advanced NAND technology with error correction for reliable storage 0 0
4613 727 5773 S Data Security Advanced NAND technology with error correction for reliable storage 0 0
4616 727 5773 S Data Security Advanced NAND technology with error correction for reliable storage 0 0
4635 727 5836 S Data Security Reliable solid-state storage with fast transfer speeds 0 0
4639 727 5843 S Data Security Advanced hardware LDPC (Low-Density Parity-Check) error correction and AES 256-bit encryption ensure data integrity and security 0 0
4160 645 5211 S Ports USB Type-C, USB 3.2 Gen2x2 interface (backward compatible) 0 110
4164 645 5228 S Ports M.2 2280 slot, PCIe 4.0 x4 interface, NVMe 1.4 0 110
4176 645 5258 S Ports PCIe Gen4 x4 NVMe M.2 interface 0 110
4178 645 5266 S Ports PCIe Gen4x4 NVMe M.2 interface 0 110
4180 645 5273 S Ports PCIe Gen3x4 NVMe 1.4 (M.2 2280 slot) 0 110
4187 645 5289 S Ports SATA 3 (6 Gb/s) interface, compatible with 2.5-inch drive bays 0 110
4210 645 5338 S Ports SATA 3 (6Gb/s) interface 0 110
4265 645 5410 S Ports SATA III 6Gb/s 0 110
4282 645 5437 S Ports M.2 2280, PCIe Gen3x4, NVMe 1.4 0 110
4283 645 5437 S Ports M.2 2280, PCIe Gen3x4, NVMe 1.4 0 110
4287 645 5410 S Ports SATA III 6Gb/s 0 110
4296 645 5465 S Ports USB 3.2 Gen2 (Type-C, cable-free design) 0 110
4302 645 5478 S Ports Dual USB-C / USB-A connectors for broad device compatibility 0 110
4335 645 5486 S Ports USB 3.2 Gen2 (Micro-USB B) 0 110
4340 645 5488 S Ports USB 3.2 Gen2x2 (USB Type-C) 0 110
4344 645 5493 S Ports PCIe Gen4x4 NVMe 2.0 0 110
4352 645 5503 S Ports USB 3.2 Gen2 (Type-C) 0 110
4353 645 5503 S Ports USB 3.2 Gen2 (Type-C) 0 110
4357 645 5516 S Ports SATA 3 (6 Gb/s) 0 110
4461 645 5543 S Ports PCIe Gen4 x4 M.2 2280 0 110
4466 645 5545 S Ports USB 3.2 Gen2 0 110
4501 645 5591 S Ports PCIe Gen3 x4 interface 0 110
4503 645 5578 S Ports SATA 6Gb/s 0 110
4504 645 5581 S Ports PCIe Gen4 x4 interface 0 110
4553 645 5635 S Ports PCIe Gen4 x4 (M.2 2280 interface) 0 110
4590 645 5545 S Ports USB 3.2 Gen2 0 110
4591 645 5545 S Ports USB 3.2 Gen2 0 110
4592 645 5733 S Ports PCIe Gen3 x4, NVMe 1.3 0 110
4598 645 5744 S Ports PCIe Gen5 x4, NVMe 2.0 0 110
4600 645 5747 S Ports USB 3.2 Gen2x2 0 110
4612 645 5774 S Ports M.2 2280 (PCIe Gen5 x4 interface) 0 110
4613 645 5776 S Ports M.2 2280 (PCIe Gen5 x4 interface 0 110
4616 645 5781 S Ports M.2 2280 (PCIe Gen4 x4 interface) 0 110
4635 645 5838 S Ports USB 3.2 Gen2 (USB-A) 0 110
4639 645 5845 S Ports M.2 2280 interface with PCIe Gen5 x4 support 0 110
4160 726 5210 S Shok Sensor Protection Rugged design with solid-state storage, resistant to shocks and drops 0 0
4164 726 5227 S Shok Sensor Protection Solid-state design makes it resistant to vibration and minor physical shocks 0 0
4176 726 5257 S Shok Sensor Protection Solid-state design with no moving parts, resistant to shocks and vibrations 0 0
4178 726 5265 S Shok Sensor Protection Solid-state design resistant to shocks and vibrations 0 0
4180 726 5272 S Shok Sensor Protection SSD with no moving parts, resistant to shock and vibration 0 0
4187 726 5288 S Shok Sensor Protection Resistant to shocks due to no moving parts 0 0
4210 726 5337 S Shok Sensor Protection Resistant to shock and vibration 0 0
4265 726 5409 S Shok Sensor Protection Shock- and vibration-resistant, no moving parts 0 0
4282 726 5436 S Shok Sensor Protection Durable, vibration-resistant design (no moving parts) 0 0
4283 726 5436 S Shok Sensor Protection Durable, vibration-resistant design (no moving parts) 0 0
4287 726 5448 S Shok Sensor Protection Shock- and vibration-resistant design (no moving parts) 0 0
4296 726 5464 S Shok Sensor Protection Built-in shock resistance to safeguard against drops and impacts 0 0
4302 726 5477 S Shok Sensor Protection No built-in shock sensor 0 0
4335 726 5485 S Shok Sensor Protection MIL-STD-810G 516.6 drop-tested 0 0
4340 726 5485 S Shok Sensor Protection MIL-STD-810G 516.6 drop-tested 0 0
4344 726 5492 S Shok Sensor Protection N/A 0 0
4352 726 5276 S Shok Sensor Protection Rugged, shock-resistant design 0 0
4353 726 5276 S Shok Sensor Protection Rugged, shock-resistant design 0 0
4357 726 5515 S Shok Sensor Protection Resistant to shocks and vibrations (no moving parts) 0 0
4461 726 0.00 5687 S Shok Sensor Protection designed with durable components for shock resistance 0 0
4466 726 5544 S Shok Sensor Protection MIL-STD drop resistant 0 0
4501 726 5568 S Shok Sensor Protection Solid state flash memory makes it resistant to vibration and minor physical shocks 0 0
4503 726 5568 S Shok Sensor Protection Solid state flash memory makes it resistant to vibration and minor physical shocks 0 0
4504 726 5568 S Shok Sensor Protection Solid state flash memory makes it resistant to vibration and minor physical shocks 0 0
4553 726 0.00 5693 S Shok Sensor Protection relies on durable SSD components and NVMe design for impact resistance. 0 0
4590 726 5729 S Shok Sensor Protection Built-in shock resistance due to solid-state design (no moving parts) 0 0
4591 726 5730 S Shok Sensor Protection uilt-in shock resistance due to solid-state design (no moving parts) 0 0
4592 726 5732 S Shok Sensor Protection Solid-state design, resistant to shocks and vibrations 0 0
4598 726 5732 S Shok Sensor Protection Solid-state design, resistant to shocks and vibrations 0 0
4600 726 5732 S Shok Sensor Protection Solid-state design, resistant to shocks and vibrations 0 0
4613 726 5775 S Shok Sensor Protection Designed for internal installation with durable components 0 0
4616 726 5775 S Shok Sensor Protection Designed for internal installation with durable components 0 0
4635 726 5837 S Shok Sensor Protection Military-grade drop resistance (MIL-STD) for enhanced durability 0 0
4639 726 5844 S Shok Sensor Protection Designed to withstand shocks up to 1,500G/0.5ms, providing durability for demanding applications. 0 0
4187 648 1562 S Storage 256GB 0 170
4283 648 1562 S Storage 256GB 0 170
4176 648 1563 S Storage 512GB 0 170
4180 648 1563 S Storage 512GB 0 170
4210 648 1563 S Storage 512GB 0 170
4287 648 1563 S Storage 512GB 0 170
4302 648 1563 S Storage 512GB 0 170
4335 648 1563 S Storage 512GB 0 170
4352 648 1563 S Storage 512GB 0 170
4353 648 1563 S Storage 512GB 0 170
4160 648 1564 S Storage 1TB 0 170
4164 648 1564 S Storage 1TB 0 170
4178 648 1564 S Storage 1TB 0 170
4265 648 1564 S Storage 1TB 0 170
4282 648 1564 S Storage 1TB 0 170
4296 648 1564 S Storage 1TB 0 170
4344 648 1564 S Storage 1TB 0 170
4357 648 1564 S Storage 1TB 0 170
4461 648 1564 S Storage 1TB 0 170
4466 648 1564 S Storage 1TB 0 170
4591 648 1564 S Storage 1TB 0 170
4592 648 1564 S Storage 1TB 0 170
4613 648 1564 S Storage 1TB 0 170
4501 648 1565 S Storage 2TB 0 170
4503 648 1565 S Storage 2TB 0 170
4504 648 1565 S Storage 2TB 0 170
4553 648 1565 S Storage 2TB 0 170
4590 648 1565 S Storage 2TB 0 170
4612 648 1565 S Storage 2TB 0 170
4635 648 1565 S Storage 2TB 0 170
4639 648 1565 S Storage 2TB 0 170
4340 648 5186 S Storage 4TB 0 170
4598 648 5186 S Storage 4TB 0 170
4600 648 5186 S Storage 4TB 0 170
4616 648 5186 S Storage 4TB 0 170
4160 728 5522 S Storage type External 0 0
4164 728 0.00 5526 S Storage type Internal 0 0
4176 728 5526 S Storage type Internal 0 0
4178 728 5526 S Storage type Internal 0 0
4180 728 5526 S Storage type Internal 0 0
4187 728 5526 S Storage type Internal 0 0
4210 728 5526 S Storage type Internal 0 0
4265 728 5526 S Storage type Internal 0 0
4282 728 5526 S Storage type Internal 0 0
4283 728 5526 S Storage type Internal 0 0
4287 728 5526 S Storage type Internal 0 0
4296 728 5522 S Storage type External 0 0
4302 728 5522 S Storage type External 0 0
4335 728 5522 S Storage type External 0 0
4340 728 5522 S Storage type External 0 0
4344 728 5522 S Storage type External 0 0
4352 728 5522 S Storage type External 0 0
4353 728 5522 S Storage type External 0 0
4357 728 5526 S Storage type Internal 0 0
4461 728 5526 S Storage type Internal 0 0
4466 728 5522 S Storage type External 0 0
4501 728 5590 S Storage type Internal SSD (M.2 NVMe) 0 0
4503 728 5583 S Storage type Internal SSD (2.5") 0 0
4504 728 5595 S Storage type Internal SSD (M.2 PCIe Gen4 x4) 0 0
4553 728 5582 S Storage type Internal SSD 0 0
4590 728 5522 S Storage type External 0 0
4591 728 5522 S Storage type External 0 0
4592 728 5526 S Storage type Internal 0 0
4598 728 5526 S Storage type Internal 0 0
4600 728 5573 S Storage type External SSD 0 0
4612 728 5582 S Storage type Internal SSD 0 0
4613 728 5582 S Storage type Internal SSD 0 0
4616 728 5582 S Storage type Internal SSD 0 0
4635 728 5573 S Storage type External SSD 0 0
4639 728 5582 S Storage type Internal SSD 0 0