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 (
    6254, 6228, 6227, 6230, 6275, 6258, 6255, 
    6229, 6256, 6257, 6259, 6226
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(521, f.categories_path) 
    OR FIND_IN_SET(522, f.categories_path) 
    OR FIND_IN_SET(537, 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.00706

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "262.88"
    },
    "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": 428,
            "rows_produced_per_join": 139,
            "filtered": "32.52",
            "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (6254,6228,6227,6230,6275,6258,6255,6229,6256,6257,6259,6226))",
            "cost_info": {
              "read_cost": "181.69",
              "eval_cost": "13.92",
              "prefix_cost": "195.61",
              "data_read_per_join": "107K"
            },
            "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": 13,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "34.79",
              "eval_cost": "1.33",
              "prefix_cost": "244.32",
              "data_read_per_join": "5K"
            },
            "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(521,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(522,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(537,`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": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.31",
              "eval_cost": "1.33",
              "prefix_cost": "248.96",
              "data_read_per_join": "30K"
            },
            "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": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.31",
              "eval_cost": "1.33",
              "prefix_cost": "253.60",
              "data_read_per_join": "15K"
            },
            "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": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.31",
              "eval_cost": "1.33",
              "prefix_cost": "258.24",
              "data_read_per_join": "40K"
            },
            "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": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.31",
              "eval_cost": "1.33",
              "prefix_cost": "262.88",
              "data_read_per_join": "5K"
            },
            "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
6226 657 6402 E Brand Ezviz 0 0
6227 657 6402 E Brand Ezviz 0 0
6228 657 6402 E Brand Ezviz 0 0
6229 657 6402 E Brand Ezviz 0 0
6230 657 6402 E Brand Ezviz 0 0
6254 657 6402 E Brand Ezviz 0 0
6255 657 6402 E Brand Ezviz 0 0
6256 657 6402 E Brand Ezviz 0 0
6257 657 6402 E Brand Ezviz 0 0
6258 657 6402 E Brand Ezviz 0 0
6259 657 6402 E Brand Ezviz 0 0
6275 657 6402 E Brand Ezviz 0 0
6226 745 7757 S Camera Connectivity Wi-Fi 2.4 GHz (IEEE 802.11 b/g/n) 0 0
6227 745 7887 S Camera Connectivity Wi-Fi 2.4 GHz (IEEE 802.11 b/g/n) + RJ-45 Ethernet 0 0
6228 745 7896 S Camera Connectivity Wi-Fi (IEEE 802.11 b/g/n, 2.4 GHz) 0 0
6229 745 7896 S Camera Connectivity Wi-Fi (IEEE 802.11 b/g/n, 2.4 GHz) 0 0
6230 745 7914 S Camera Connectivity Wi-Fi 2.4 GHz (IEEE 802.11 b/g/n) and Ethernet (RJ-45, 10/100 Mbps). 0 0
6254 745 7953 S Camera Connectivity Wi-Fi (2.4 GHz IEEE 802.11 b/g/n) and RJ-45 Ethernet port 0 0
6255 745 7963 S Camera Connectivity Wi-Fi (IEEE 802.11 b/g/n, 2.4 GHz) + RJ-45 Ethernet (10/100 Mbps) 0 0
6256 745 7973 S Camera Connectivity Wi-Fi (IEEE 802.11 b/g/n, 2.4 GHz) + RJ-45 Ethernet port. 0 0
6257 745 7982 S Camera Connectivity Wi-Fi (2.4 GHz IEEE 802.11 b/g/n) + RJ-45 Ethernet port 0 0
6258 745 8001 S Camera Connectivity Wi-Fi (IEEE 802.11 b/g/n @ 2.4 GHz, 20 MHz bandwidth, AP pairing supported, WPA/WPA2 encryption) and RJ-45 Ethernet port (10/100 Mbps auto-adaptive). 0 0
6259 745 8011 S Camera Connectivity Wi-Fi IEEE 802.11 b/g/n (2.4 GHz, 20 MHz), supports AP pairing with WPA/WPA2 encryption; also includes RJ-45 Ethernet port (10/100 Mbps auto-adaptive). 0 0
6275 745 8050 S Camera Connectivity Power over Ethernet (PoE) for power and data via a single cable 0 0
6226 744 7878 S Camera Type Indoor Pan & Tilt Smart Home Camera 0 0
6227 744 7878 S Camera Type Indoor Pan & Tilt Smart Home Camera 0 0
6228 744 7897 S Camera Type Dual-lens Pan & Tilt smart camera (wide + telephoto lenses) 0 0
6229 744 7905 S Camera Type Pan & Tilt indoor smart home camera 0 0
6230 744 7915 S Camera Type Dual-lens Pan & Tilt (one fixed wide + one motorized PT lens). 0 0
6254 744 7954 S Camera Type Outdoor dual-lens PTZ camera combining a wide fixed view and a motorized pan-tilt zoom lens for full-area coverage. 0 0
6255 744 7964 S Camera Type Outdoor PTZ triple-lens camera with motorized pan & tilt & mixed-zoom lenses (wide + telephoto) 0 0
6256 744 7974 S Camera Type Outdoor motorized pan & tilt camera, allows wide rotation for full area monitoring. 0 0
6257 744 7983 S Camera Type Outdoor motorized pan & tilt camera, made for full-area external surveillance 0 0
6258 744 8002 S Camera Type Outdoor Pan & Tilt camera – weather-resistant with 360° panoramic coverage for full-area protection 0 0
6259 744 8012 S Camera Type Indoor/Outdoor Pan & Tilt camera – compact weather-resistant design offering wide or full 360° coverage 0 0
6275 744 8051 S Camera Type Pan & Tilt indoor/outdoor security camera 0 0
6226 656 6283 S Color Off-White 0 160
6227 656 5835 S Color Off Black 0 160
6228 656 1559 S Color white 0 160
6229 656 1559 S Color white 0 160
6230 656 1559 S Color white 0 160
6254 656 1559 S Color white 0 160
6255 656 1559 S Color white 0 160
6256 656 1559 S Color white 0 160
6257 656 1559 S Color white 0 160
6258 656 1559 S Color white 0 160
6259 656 1559 S Color white 0 160
6275 656 0.00 1559 S Color white 0 160
6226 735 7879 S Field of View (FOV) ~85° (diagonal) 0 0
6227 735 7888 S Field of View (FOV) Diagonal ~85°, Horizontal ~75°, Vertical ~45° 0 0
6228 735 7898 S Field of View (FOV) Wide lens ~130° diagonal / Telephoto lens ~62° diagonal 0 0
6229 735 7906 S Field of View (FOV) Diagonal 85° / Horizontal 75° / Vertical 45° (approx.) 0 0
6230 735 7916 S Field of View (FOV) Wide lens 130° diagonal / PT lens 62° diagonal 0 0
6254 735 7955 S Field of View (FOV) Wide lens 132° diag / 110° horiz / 58° vert; PT lens 64° diag / 56° horiz / 29° vert. 0 0
6255 735 7965 S Field of View (FOV) 2.8 mm lens ≈ 110° diag / 96° horiz / 54° vert; 6 mm ≈ 60° diag / 52° horiz / 28° vert; 12 mm ≈ 29° diag / 25° horiz / 14° vert 0 0
6256 735 7975 S Field of View (FOV) 4 mm lens gives ~87° horizontal, ~104° diagonal; pan: 350°, tilt: 80°. 0 0
6257 735 7984 S Field of View (FOV) ~91° horizontal (diagonal ~104°) with 4 mm lens; pan range 350°, tilt 80° 0 0
6258 735 8003 S Field of View (FOV) 89° horizontal / 100° diagonal with 4 mm lens, or 52° horizontal / 60° diagonal with 6 mm lens 0 0
6259 735 8013 S Field of View (FOV) 91° horizontal / 108° diagonal with 4 mm lens, or 56° horizontal / 66° diagonal with 6 mm lens 0 0
6275 735 8052 S Field of View (FOV) Up to 340° horizontal and 75° vertical coverage 0 0
6226 736 7880 S Focal Length Fixed lens ≈ 4 mm (F2.4) 0 0
6227 736 7889 S Focal Length 4 mm, f/2.4, lens mount M12 0 0
6228 736 7899 S Focal Length Wide lens 2.8 mm @ F1.6 / Telephoto lens 6 mm @ F1.6 0 0
6229 736 7907 S Focal Length 4 mm @ F2.4 0 0
6230 736 7917 S Focal Length Wide lens 2.8 mm @ F1.6; PT lens 6 mm @ F1.6 0 0
6254 736 7956 S Focal Length Wide 2.8 mm @ F1.6; PT 6 mm @ F1.6 0 0
6255 736 7966 S Focal Length 2.8 mm, 6 mm, 12 mm (all at F1.6) 0 0
6256 736 7795 S Focal Length 4 mm @ F1.6 0 0
6257 736 7795 S Focal Length 4 mm @ F1.6 0 0
6258 736 8004 S Focal Length 4 mm @ F1.6 or 6 mm @ F1.6 depending on model variant 0 0
6259 736 8014 S Focal Length 4 mm @ F1.6 or 6 mm @ F1.6 0 0
6275 736 8053 S Focal Length 4 mm fixed lens 0 0
6226 737 7881 S Night Mode Infrared (IR) night vision up to 10 m 0 0
6227 737 7890 S Night Mode Infrared night vision up to ~10 m (33 ft) 0 0
6228 737 7900 S Night Mode Infrared night vision up to 30 m with auto IR-cut filter and color night vision option 0 0
6229 737 7908 S Night Mode Infrared night vision up to 10 m with auto IR-cut filter 0 0
6230 737 7918 S Night Mode IR night vision up to 30 m with color and smart night vision modes 0 0
6254 737 7957 S Night Mode Color night vision with spotlights; range up to 30–40 m; Smart/Color/B&W modes. 0 0
6255 737 7967 S Night Mode Full-color night vision with IR or spotlights; up to ~30 m range; IR-cut filter auto switch. 0 0
6256 737 7976 S Night Mode Color night vision + IR night vision, minimum illumination ~0.5 Lux (with when needed IR provides 0 Lux), black-and-white mode range up to ~30 m. 0 0
6257 737 7985 S Night Mode Color night vision with built-in spotlights + IR (0 Lux with IR on), range up to ~30 m 0 0
6258 737 8005 S Night Mode IR-cut filter with auto switch; 0.5 Lux (min illumination), 0 Lux with IR; black-and-white up to 30 m (98 ft) and color night vision via built-in spotlights 0 0
6259 737 8015 S Night Mode 0.5 Lux @ F1.6 (min. illumination) and 0 Lux with IR; black-and-white night vision up to 30 m (98 ft); built-in spotlights enable color night mode 0 0
6275 737 8054 S Night Mode Infrared night vision with up to 30 meters range. 0 0
6226 738 7882 S Operating Conditions –10 °C to +45 °C, ≤ 95% humidity 0 0
6227 738 7891 S Operating Conditions –10 °C to +45 °C, humidity ≤ 95% non-condensing 0 0
6228 738 7901 S Operating Conditions Designed for indoor and sheltered outdoor use (weather-resistant housing) 0 0
6229 738 7909 S Operating Conditions Indoor use; operating temperature 0 °C – 45 °C (32 °F – 113 °F) 0 0
6230 738 7919 S Operating Conditions –30 °C to +50 °C, humidity ≤ 95% (non-condensing) 0 0
6254 738 7958 S Operating Conditions –30 °C to +50 °C, ≤ 95% humidity, weatherproof (IP-rated) 0 0
6255 738 7968 S Operating Conditions -30 °C to +50 °C; ≤ 95% humidity (non-condensing); IP67 weatherproof rating. 0 0
6256 738 7977 S Operating Conditions -30 °C to +50 °C; outdoor/weatherproof design (weather resistant) 0 0
6257 738 7986 S Operating Conditions –30 °C to +50 °C, humidity ≤ 95% (non-condensing), weatherproof body (IP65/67) 0 0
6258 738 8006 S Operating Conditions –30 °C to +50 °C (–22 °F to 122 °F), humidity ≤ 95 % non-condensing 0 0
6259 738 8016 S Operating Conditions –30 °C to +50 °C (–22 °F to 122 °F); humidity ≤ 95 % non-condensing 0 0
6275 738 8055 S Operating Conditions –30°C to 60°C, humidity ≤ 95% (non-condensing) 0 0
6226 645 0.00 7884 S Ports MicroSD slot (up to 256 GB), micro USB power 0 110
6227 645 0.00 7893 S Ports MicroSD slot (up to 256 GB), RJ-45 Ethernet port, Wi-Fi; power via 5 V DC input 0 110
6228 645 0.00 7903 S Ports Power adapter input, optional RJ45 Ethernet port (model-dependent) 0 110
6229 645 0.00 7911 S Ports Power port (micro-USB or DC input) 0 110
6230 645 0.00 7921 S Ports RJ-45 Ethernet port and microSD card slot 0 110
6254 645 1.00 7960 S Ports 1 × RJ-45 Ethernet, 1 × microSD slot 0 110
6255 645 1.00 7970 S Ports 1 × RJ-45 Ethernet + microSD slot (supports up to 512 GB) 0 110
6256 645 0.00 7979 S Ports microSD slot (supports up to 512 GB) + Ethernet port. 0 110
6257 645 0.00 7987 S Ports microSD card slot (up to 512 GB) + Ethernet (10/100 Mbps) 0 110
6258 645 0.00 8008 S Ports RJ-45 Ethernet port, Wi-Fi antenna, and MicroSD card slot (up to 512 GB). 0 110
6259 645 0.00 8018 S Ports MicroSD card slot (up to 512 GB), RJ-45 Ethernet port, Wi-Fi antenna 0 110
6275 645 0.00 8057 S Ports RJ45 Ethernet port with PoE support 0 110
6254 651 7959 S Processor 3K (2880 × 1620) at up to 15 fps; H.265/H.264 encoding 0 60
6226 642 7883 S Resolution Full HD 1080p (1920×1080) 0 50
6227 642 7892 S Resolution Up to 4MP (2560 × 1440) (called “2K⁺”) 0 50
6228 642 7902 S Resolution Up to 2304 × 1296 (2K) video quality 0 50
6229 642 7910 S Resolution 2K (2304 × 1296) video recording 0 50
6230 642 7920 S Resolution 2304 × 1296 (2K⁺) at up to 15 fps 0 50
6255 642 7969 S Resolution Up to 2560 × 1440 (2K+) with adaptive frame rate; H.265 / H.264 compression. 0 50
6256 642 7978 S Resolution 4K (3840 × 2160) Ultra HD 0 50
6257 642 7702 S Resolution 4K Ultra HD (3840 × 2160) 0 50
6258 642 8007 S Resolution 2K / 2K+ (2560 × 1440 pixels, ≈ 4 MP Quad HD) 0 50
6259 642 8017 S Resolution 3K (2880 × 1620 pixels) delivering ultra-sharp video clarity 0 50
6275 642 8056 S Resolution 2K (2560 × 1440) high-definition video 0 50
6226 646 0.00 7885 S Sensor AI human shape and motion detection with auto-tracking and adjustable detection zones. 0 130
6227 646 1.00 7894 S Sensor 1/3″ progressive scan CMOS (also supports motion / human detection via AI) 0 130
6228 646 7869 S Sensor AI human & motion detection, smart tracking 0 130
6229 646 0.00 7912 S Sensor AI-powered motion detection sensor that intelligently identifies human movement to reduce false alarms. 0 130
6254 646 1.00 7961 S Sensor 1/2.7″ CMOS sensor with AI detection for humans and vehicles. 0 130
6255 646 0.00 7971 S Sensor Triple 1/3″ Progressive-Scan CMOS sensors ×3; with AI shape detection for humans & vehicles 0 130
6256 646 1.00 7980 S Sensor 1/2.7″ Progressive Scan CMOS; tracks humans and vehicles using AI-shape detection. 0 130
6257 646 1.00 7988 S Sensor 1/2.7″ Progressive Scan CMOS, tracks human & vehicle shapes via AI detection 0 130
6258 646 1.00 8009 S Sensor 1/2.7-inch Progressive Scan CMOS sensor with AI-powered detection that automatically tracks human and vehicle movement 0 130
6259 646 1.00 8019 S Sensor 1/2.7-inch Progressive Scan CMOS sensor with AI human and vehicle shape detection and auto-tracking 0 130
6275 646 1.00 8058 S Sensor 1/2.7" Progressive Scan CMOS sensor with AI that tracks humans and vehicles 0 130
6226 648 0.00 7886 S Storage MicroSD (up to 256 GB) + EZVIZ Cloud storage option 0 170
6227 648 0.00 7895 S Storage Local via microSD (up to 256 GB) + optional EZVIZ CloudPlay storage 0 170
6228 648 0.00 7904 S Storage MicroSD card (up to 512 GB) and EZVIZ Cloud storage support 0 170
6229 648 0.00 7913 S Storage Supports microSD card up to 512 GB and EZVIZ CloudPlay storage 0 170
6230 648 0.00 7922 S Storage microSD card (up to 512 GB) and EZVIZ CloudPlay (cloud). 0 170
6254 648 0.00 7962 S Storage microSD (up to 512 GB) and EZVIZ CloudPlay. 0 170
6255 648 0.00 7972 S Storage Local storage via microSD (up to 512 GB), plus cloud option via EZVIZ CloudPlay 0 170
6256 648 0.00 7981 S Storage Local via microSD (up to 512 GB); and cloud storage through EZVIZ CloudPlay. 0 170
6257 648 0.00 7989 S Storage Local microSD (up to 512 GB) + EZVIZ CloudPlay (cloud backup) 0 170
6258 648 0.00 8010 S Storage Supports MicroSD cards up to 512 GB and optional EZVIZ CloudPlay cloud storage 0 170
6259 648 0.00 8020 S Storage Local MicroSD card support (up to 512 GB) and optional EZVIZ CloudPlay cloud storage 0 170
6275 648 7913 S Storage Supports microSD card up to 512 GB and EZVIZ CloudPlay storage 0 170