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 (
    4833, 5923, 5190, 5924, 3801, 4763, 4782, 
    5192, 5912, 5193, 4806, 4781, 4824, 
    4821, 4731, 4813, 4769, 4828, 5943, 
    4832, 4831
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(250, f.categories_path) 
    OR FIND_IN_SET(328, f.categories_path) 
    OR FIND_IN_SET(402, f.categories_path) 
    OR FIND_IN_SET(564, f.categories_path) 
    OR FIND_IN_SET(565, 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.00558

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "325.84"
    },
    "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": 528,
            "rows_produced_per_join": 171,
            "filtered": "32.51",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (4833,5923,5190,5924,3801,4763,4782,5192,5912,5193,4806,4781,4824,4821,4731,4813,4769,4828,5943,4832,4831)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'ar')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "225.69",
              "eval_cost": "17.17",
              "prefix_cost": "242.86",
              "data_read_per_join": "132K"
            },
            "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": 16,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "42.92",
              "eval_cost": "1.64",
              "prefix_cost": "302.95",
              "data_read_per_join": "7K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "categories_path",
              "parent_id",
              "display_on_catalog",
              "status",
              "position"
            ],
            "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`f`.`status` = 'A') and (`softwarepirmam_hewadelivard_cscart_4`.`f`.`display_on_catalog` = 'Y') and ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path` = '') or (0 <> find_in_set(166,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(250,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(328,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(402,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(564,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(565,`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": 16,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "4.09",
              "eval_cost": "1.64",
              "prefix_cost": "308.67",
              "data_read_per_join": "37K"
            },
            "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": 16,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "4.09",
              "eval_cost": "1.64",
              "prefix_cost": "314.40",
              "data_read_per_join": "18K"
            },
            "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": 16,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "4.09",
              "eval_cost": "1.64",
              "prefix_cost": "320.12",
              "data_read_per_join": "49K"
            },
            "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": 16,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "4.09",
              "eval_cost": "1.64",
              "prefix_cost": "325.85",
              "data_read_per_join": "7K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "position"
            ],
            "attached_condition": "<if>(is_not_null_compl(gf), (`softwarepirmam_hewadelivard_cscart_4`.`gf`.`feature_type` = 'G'), true)"
          }
        }
      ]
    }
  }
}

Result

product_id feature_id value value_int variant_id feature_type description prefix suffix variant parent_id position gposition
3801 714 4742 S Air Space Coverage Long-range (up to 12+ km point-to-point coverage in clear line of sight) 0 0
4731 667 5946 S Antenna Type Built-in 26 dBi smart antenna 0 260
4763 667 0.00 5982 S Antenna Type High-Gain Directional Antenna 0 260
4769 667 23.00 5989 S Antenna Type 23 dBi Directional Antenna 0 260
4781 667 0.00 5996 S Antenna Type Built-in 19 dBi Directional Antenna 0 260
4782 667 0.00 6005 S Antenna Type Built-in directional antenna, 13 dBi, dual linear polarization 0 260
4806 667 0.00 6029 S Antenna Type Built-in dual-polarity 11 dBi antenna 0 260
4813 667 0.00 6044 S Antenna Type Dual-polarized directional antenna (16 dBi) 0 260
4821 667 25.00 6052 S Antenna Type 25 dBi dish reflector with InnerFeed® technology 0 260
4824 667 27.00 6057 S Antenna Type 27 dBi dish reflector 0 260
4828 667 29.00 6060 S Antenna Type 29 dBi dish reflector 0 260
4831 667 25.00 6064 S Antenna Type 25 dBi dish reflector 0 260
4832 667 0.00 6068 S Antenna Type Integrated directional antennas 0 260
4833 667 0.00 6075 S Antenna Type External (sold separately) 0 260
5190 667 6685 S Antenna Type External (connects to airMAX sector or dish antennas) 0 260
5192 667 0.00 6692 S Antenna Type Parabolic Dish, Dual-linear polarized 0 260
5193 667 6697 S Antenna Type Parabolic, dual-linear polarized 0 260
5912 667 0.00 7600 S Antenna Type Dish reflector / “wire dish” style integrated antenna 0 260
5923 667 0.00 7624 S Antenna Type None, external antennas required 0 260
5924 667 0.00 7632 S Antenna Type Integrated 16 dBi directional 0 260
5943 667 0.00 7654 S Antenna Type Integrated directional grid, 24.5 dBi, dual polarization 0 260
3801 723 4744 S Built-in Features Bluetooth for setup, GPS for alignment, backup 5 GHz radio, status LEDs 0 0
3801 709 4745 S Cable Type Ethernet 0 0
3801 654 4750 S Charging Type Passive PoE (Power over Ethernet) 0 120
3801 659 4751 S Connectivity 60 GHz (primary), 5 GHz (backup), Gigabit Ethernet 0 152
4731 664 5943 S Frequency Bands 60 GHz (primary), 5 GHz (backup) 0 230
4763 664 0.00 5979 S Frequency Bands Dual Band (2.4 GHz & 5 GHz) 0 230
4769 664 5.00 5986 S Frequency Bands 5 GHz (5150–5875 MHz) 0 230
4781 664 5.00 5993 S Frequency Bands 5 GHz 0 230
4782 664 5.00 6002 S Frequency Bands 5 GHz (5.170 – 5.875 GHz) 0 230
4806 664 0.00 6026 S Frequency Bands Single Band 2.4 GHz 0 230
4813 664 5993 S Frequency Bands 5 GHz 0 230
4821 664 5986 S Frequency Bands 5 GHz (5150–5875 MHz) 0 230
4824 664 5.00 6054 S Frequency Bands 5 GHz (5150–5875 MHz) 0 230
4828 664 5.88 6058 S Frequency Bands 5.88 GHz (5150–5875 MHz) 0 230
4831 664 5972 S Frequency Bands 5 GHz 0 230
4832 664 5972 S Frequency Bands 5 GHz 0 230
4833 664 2.40 6072 S Frequency Bands 2.4 GHz 0 230
5190 664 5.00 5993 S Frequency Bands 5 GHz 0 230
5192 664 6683 S Frequency Bands 5hz 0 230
5193 664 6695 S Frequency Bands 5.1 – 5.8 GHz 0 230
5912 664 60.00 7597 S Frequency Bands 60 GHz (single high-frequency band 0 230
5923 664 0.00 7621 S Frequency Bands N/A 0 230
5924 664 5993 S Frequency Bands 5 GHz 0 230
5943 664 5.00 7652 S Frequency Bands 5 GHz band 0 230
3801 720 4746 S Material & Build Quality Weather-resistant outdoor-grade plastic/composite 0 0
4731 669 5947 S Maximum Device Rate 5.4 Gbps total throughput 0 280
4763 669 0.00 5984 S Maximum Device Rate Up to 450 Mbps (2.4 GHz), 867 Mbps (5 GHz) 0 280
4769 669 4877 S Maximum Device Rate 10 Gbps (total switching capacity). 0 280
4781 669 0.00 5997 S Maximum Device Rate Up to 450 Mbps 0 280
4782 669 0.00 6007 S Maximum Device Rate Up to 150 Mbps 0 280
4806 669 0.00 6030 S Maximum Device Rate Up to 150 Mbps real outdoor throughput 0 280
4813 669 0.00 6046 S Maximum Device Rate Up to 150 Mbps (throughput) 0 280
4821 669 0.00 6053 S Maximum Device Rate Up to 450+ Mbps throughput 0 280
4824 669 6053 S Maximum Device Rate Up to 450+ Mbps throughput 0 280
4828 669 0.00 6061 S Maximum Device Rate Up to 450 Mbps throughput 0 280
4831 669 0.00 6065 S Maximum Device Rate Up to 150 Mbps throughput 0 280
4832 669 0.00 6069 S Maximum Device Rate Up to 500 Mbps 0 280
4833 669 0.00 6077 S Maximum Device Rate Up to 150+ Mbps real TCP/IP throughput 0 280
5190 669 6687 S Maximum Device Rate Up to 450+ Mbps (real throughput) 0 280
5192 669 0.00 6694 S Maximum Device Rate Up to 450+ Mbps real throughput 0 280
5193 669 6694 S Maximum Device Rate Up to 450+ Mbps real throughput 0 280
5912 669 18.20 7601 S Maximum Device Rate 18.2 Gbps 0 280
5923 669 0.00 7626 S Maximum Device Rate Up to 1.5 million PPS 0 280
5924 669 0.00 7634 S Maximum Device Rate Approx. 300 Mbps 0 280
5943 669 0.00 7655 S Maximum Device Rate Up to ~300 Mbps 0 280
4763 668 0.00 5983 S Maximum User Capacity (typical for point-to-point links) 0 270
4769 668 0.00 5990 S Maximum User Capacity point to point 0 270
4782 668 0.00 6006 S Maximum User Capacity Up to 150 users 0 270
4813 668 0.00 6045 S Maximum User Capacity Up to 150+ users (point-to-multipoint scenarios) 0 270
4831 668 6045 S Maximum User Capacity Up to 150+ users (point-to-multipoint scenarios) 0 270
4833 668 0.00 6076 S Maximum User Capacity Supports multiple clients in PtMP configuration 0 270
5190 668 6686 S Maximum User Capacity Optimized for PtP and PtMP links (supports multiple client connections) 0 270
5192 668 0.00 6693 S Maximum User Capacity Optimized for multiple PtP/PtMP clients (depends on Rocket radio) 0 270
5193 668 6693 S Maximum User Capacity Optimized for multiple PtP/PtMP clients (depends on Rocket radio) 0 270
5923 668 0.00 7625 S Maximum User Capacity Approx. 500-700 users 0 270
5924 668 0.00 7633 S Maximum User Capacity Approx. 150 users 0 270
5943 668 6006 S Maximum User Capacity Up to 150 users 0 270
4763 663 0.00 5978 S Mounting Options Pole, Wall 0 220
4769 663 0.00 5985 S Mounting Options Pole Mount (Kit Included) 0 220
4781 663 0.00 5992 S Mounting Options Pole Mount (included 0 220
4782 663 0.00 6001 S Mounting Options Pole Mount (included) 0 220
4806 663 0.00 6025 S Mounting Options Pole-mount kit included 0 220
4813 663 5978 S Mounting Options Pole, Wall 0 220
4821 663 5985 S Mounting Options Pole Mount (Kit Included) 0 220
4824 663 5985 S Mounting Options Pole Mount (Kit Included) 0 220
4828 663 5985 S Mounting Options Pole Mount (Kit Included) 0 220
4831 663 5985 S Mounting Options Pole Mount (Kit Included) 0 220
4832 663 0.00 6067 S Mounting Options Pole mount 0 220
4833 663 0.00 6071 S Mounting Options Mounts to airMAX RocketDish™ or sector antennas 0 220
5190 663 6682 S Mounting Options Pole-mount, Dish antenna mount (compatible with airMAX antennas) 0 220
5192 663 0.00 6689 S Mounting Options Pole-mount with precision alignment hardware included 0 220
5193 663 6689 S Mounting Options Pole-mount with precision alignment hardware included 0 220
5912 663 0.00 7596 S Mounting Options Pole mount / outdoor dish mount (outdoor CPE style) 0 220
5923 663 0.00 7620 S Mounting Options Pole, Wall, Tower 0 220
5924 663 0.00 7629 S Mounting Options Pole / mast (horizontal or vertical) 0 220
5943 663 0.00 7651 S Mounting Options Pole / mast mount, outdoor use 0 220
4731 665 5944 S Network Ports 1 x 10G SFP+ port, 1 x Gigabit Ethernet (RJ45) port 0 240
4763 665 1.00 5980 S Network Ports 1 x Gigabit Ethernet (RJ45) 0 240
4769 665 1.00 5987 S Network Ports 1 x 10/100 Ethernet (RJ45) 0 240
4781 665 2.00 5994 S Network Ports 2 x GE (RJ45) 0 240
4782 665 1.00 6003 S Network Ports 1 × 10/100 Mbps RJ45 0 240
4806 665 2.00 6027 S Network Ports 2 x 10/100 Mbps RJ45 0 240
4813 665 2.00 6042 S Network Ports 2 x 10/100 Mbps (RJ45), with PoE support 0 240
4821 665 5944 S Network Ports 1 x 10G SFP+ port, 1 x Gigabit Ethernet (RJ45) port 0 240
4824 665 1.00 6055 S Network Ports 1 x Gigabit Ethernet (RJ45 0 240
4828 665 5980 S Network Ports 1 x Gigabit Ethernet (RJ45) 0 240
4831 665 5980 S Network Ports 1 x Gigabit Ethernet (RJ45) 0 240
4832 665 5980 S Network Ports 1 x Gigabit Ethernet (RJ45) 0 240
4833 665 2.00 6073 S Network Ports 2 x 10/100 Ethernet (RJ45) 0 240
5190 665 6684 S Network Ports 1 x 10/100/1000 Mbps RJ45 (Gigabit Ethernet) 0 240
5192 665 0.00 6690 S Network Ports Depends on connected Rocket radio (1 x GE RJ45 typical) 0 240
5193 665 6696 S Network Ports 1 x Gigabit Ethernet (RJ45) port 0 240
5912 665 1.00 7598 S Network Ports 1 × Gigabit Ethernet (RJ-45) port 0 240
5923 665 5.00 7622 S Network Ports 5 × Gigabit Ethernet, 1 × SFP 0 240
5924 665 1.00 7630 S Network Ports 1 × 10/100 Ethernet (RJ45) 0 240
5943 665 1.00 7653 S Network Ports 1 × Gigabit Ethernet (RJ45, PoE in) 0 240
3801 645 4749 S Ports 1 × Gigabit Ethernet 0 110
4731 666 5945 S Power Support Passive PoE (44–54V DC) 0 250
4763 666 0.00 5981 S Power Support Passive PoE 0 250
4769 666 24.00 5988 S Power Support 24V Passive PoE (Adapter Included) 0 250
4781 666 0.00 5995 S Power Support PoE (24V Gigabit Adapter Included) 0 250
4782 666 0.00 6004 S Power Support Active PoE (24V, 0.5A) 0 250
4806 666 0.00 6028 S Power Support Passive PoE (24 V, 0.5 A) 0 250
4813 666 0.00 6043 S Power Support Passive PoE (24V) 0 250
4821 666 24.00 6051 S Power Support 24V Passive PoE (Pairs 4, 5+; 7, 8 return) 0 250
4824 666 24.00 6056 S Power Support 24V, 0.5A Gigabit PoE adapter (included) 0 250
4828 666 24.00 6059 S Power Support 24V, 0.5A Gigabit PoE (included) 0 250
4831 666 24.00 6063 S Power Support 24V, 0.5A Passive PoE (included) 0 250
4832 666 5981 S Power Support Passive PoE 0 250
4833 666 24.00 6074 S Power Support 24V Passive PoE 0 250
5190 666 6074 S Power Support 24V Passive PoE 0 250
5192 666 0.00 6691 S Power Support Passive PoE (via connected Rocket radio) 0 250
5193 666 6691 S Power Support Passive PoE (via connected Rocket radio) 0 250
5912 666 0.00 7599 S Power Support PoE input (802.3af/at) — input voltage range ~12 V to 57 V, Max power consumption: ~7 W 0 250
5923 666 0.00 7623 S Power Support Passive PoE, 802.3af/at PoE 0 250
5924 666 0.00 7631 S Power Support Passive PoE-IN (10–30 V DC, ~6 W) 0 250
5943 666 7641 S Power Support Passive PoE (8–30 V DC) 0 250
3801 651 4747 S Processor Quad-core ARM Cortex-A7 0 60
4731 662 5942 S Wi-Fi Standard 60 GHz (802.11ad) 0 210
4763 662 2873 S Wi-Fi Standard Wi-Fi 5 (802.11ac) 0 210
4769 662 2873 S Wi-Fi Standard Wi-Fi 5 (802.11ac) 0 210
4781 662 2873 S Wi-Fi Standard Wi-Fi 5 (802.11ac) 0 210
4782 662 802.11 6000 S Wi-Fi Standard 802.11a/n 0 210
4806 662 802.11 6024 S Wi-Fi Standard 802.11b/g/n (2.4 GHz) 0 210
4813 662 6000 S Wi-Fi Standard 802.11a/n 0 210
4821 662 802.11 6050 S Wi-Fi Standard 802.11ac (airMAX ac) 0 210
4824 662 6050 S Wi-Fi Standard 802.11ac (airMAX ac) 0 210
4828 662 6050 S Wi-Fi Standard 802.11ac (airMAX ac) 0 210
4831 662 802.11 6062 S Wi-Fi Standard 802.11n (airMAX 0 210
4832 662 0.00 6066 S Wi-Fi Standard Wi‑Fi 5 (802.11ac) 0 210
4833 662 0.00 6070 S Wi-Fi Standard Wi‑Fi 4 (802.11n) 0 210
5190 662 6681 S Wi-Fi Standard airMAX ac (based on 802.11ac technology) 0 210
5192 662 0.00 6688 S Wi-Fi Standard airMAX ac (802.11ac, for Rocket radios) 0 210
5193 662 6688 S Wi-Fi Standard airMAX ac (802.11ac, for Rocket radios) 0 210
5912 662 802.11 7595 S Wi-Fi Standard 802.11ad (60 GHz, “WiGig” / 60G band) 0 210
5924 662 0.00 7628 S Wi-Fi Standard Wi-Fi 4 (802.11a/n) 0 210
5943 662 802.11 7650 S Wi-Fi Standard 802.11a/n (5 GHz) 0 210
3801 656 1559 S لون White 0 160
5912 656 1559 S لون White 0 160
5923 656 1559 S لون White 0 160
5924 656 0.00 7627 S لون Light Grey 0 160
5943 656 1559 S لون White 0 160
3801 657 4743 E ماركة Ubiquiti Networks 0 0
4731 657 4743 E ماركة Ubiquiti Networks 0 0
4763 657 4743 E ماركة Ubiquiti Networks 0 0
4769 657 4743 E ماركة Ubiquiti Networks 0 0
4781 657 4743 E ماركة Ubiquiti Networks 0 0
4782 657 4743 E ماركة Ubiquiti Networks 0 0
4806 657 4743 E ماركة Ubiquiti Networks 0 0
4813 657 4743 E ماركة Ubiquiti Networks 0 0
4821 657 4743 E ماركة Ubiquiti Networks 0 0
4824 657 4743 E ماركة Ubiquiti Networks 0 0
4828 657 4743 E ماركة Ubiquiti Networks 0 0
4831 657 4743 E ماركة Ubiquiti Networks 0 0
4832 657 4743 E ماركة Ubiquiti Networks 0 0
4833 657 4743 E ماركة Ubiquiti Networks 0 0
5190 657 4743 E ماركة Ubiquiti Networks 0 0
5192 657 4743 E ماركة Ubiquiti Networks 0 0
5193 657 4743 E ماركة Ubiquiti Networks 0 0
5912 657 7483 E ماركة MIKROTIK 0 0
5923 657 7483 E ماركة MIKROTIK 0 0
5924 657 7483 E ماركة MIKROTIK 0 0
5943 657 7483 E ماركة MIKROTIK 0 0