SELECT 
  SQL_CALC_FOUND_ROWS (
    CASE WHEN products.parent_product_id <> 0 THEN products.parent_product_id ELSE products.product_id END
  ) AS product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  MIN(
    IF(
      prices.percentage_discount = 0, 
      prices.price, 
      prices.price - (
        prices.price * prices.percentage_discount
      )/ 100
    )
  ) as price, 
  GROUP_CONCAT(
    products.product_id 
    ORDER BY 
      products.parent_product_id ASC, 
      products.product_id ASC
  ) AS product_ids, 
  GROUP_CONCAT(
    products.product_type 
    ORDER BY 
      products.parent_product_id ASC, 
      products.product_id ASC
  ) AS product_types, 
  GROUP_CONCAT(
    products.parent_product_id 
    ORDER BY 
      products.parent_product_id ASC, 
      products.product_id ASC
  ) AS parent_product_ids, 
  products.product_type, 
  products.parent_product_id, 
  descr1.full_description as full_description 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_product_prices as prices_2 ON prices.product_id = prices_2.product_id 
  AND prices_2.lower_limit = 1 
  AND prices_2.price < prices.price 
  AND prices_2.usergroup_id IN (0, 0, 1) 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_categories.storefront_id IN (0, 1) 
WHERE 
  1 
  AND products.product_id NOT IN (175) 
  AND companies.status IN ('A') 
  AND prices.price >= 170.99 
  AND prices.price <= 188.99 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND prices_2.price IS NULL 
  AND products.company_id IN('1', '2', '3', '4', '5', '6') 
  AND products.product_type != 'D' 
GROUP BY 
  product_id 
ORDER BY 
  product asc, 
  products.product_id ASC 
LIMIT 
  0, 3

Query time 0.01667

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "44.30"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": true,
        "buffer_result": {
          "using_temporary_table": true,
          "nested_loop": [
            {
              "table": {
                "table_name": "companies",
                "access_type": "ALL",
                "possible_keys": [
                  "PRIMARY"
                ],
                "rows_examined_per_scan": 6,
                "rows_produced_per_join": 1,
                "filtered": "16.67",
                "cost_info": {
                  "read_cost": "3.27",
                  "eval_cost": "0.20",
                  "prefix_cost": "3.47",
                  "data_read_per_join": "7K"
                },
                "used_columns": [
                  "company_id",
                  "status",
                  "company"
                ],
                "attached_condition": "((`atulecarter_atul_demo1`.`companies`.`status` = 'A') and (`atulecarter_atul_demo1`.`companies`.`company_id` in ('1','2','3','4','5','6')))"
              }
            },
            {
              "table": {
                "table_name": "cscart_categories",
                "access_type": "ALL",
                "possible_keys": [
                  "PRIMARY",
                  "c_status",
                  "p_category_id"
                ],
                "rows_examined_per_scan": 86,
                "rows_produced_per_join": 3,
                "filtered": "4.00",
                "using_join_buffer": "Block Nested Loop",
                "cost_info": {
                  "read_cost": "20.01",
                  "eval_cost": "0.69",
                  "prefix_cost": "24.16",
                  "data_read_per_join": "8K"
                },
                "used_columns": [
                  "category_id",
                  "storefront_id",
                  "usergroup_ids",
                  "status"
                ],
                "attached_condition": "(((`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids`)) and (`atulecarter_atul_demo1`.`cscart_categories`.`status` in ('A','H')) and (`atulecarter_atul_demo1`.`cscart_categories`.`storefront_id` in (0,1)))"
              }
            },
            {
              "table": {
                "table_name": "products_categories",
                "access_type": "ref",
                "possible_keys": [
                  "PRIMARY",
                  "pt"
                ],
                "key": "PRIMARY",
                "used_key_parts": [
                  "category_id"
                ],
                "key_length": "3",
                "ref": [
                  "atulecarter_atul_demo1.cscart_categories.category_id"
                ],
                "rows_examined_per_scan": 3,
                "rows_produced_per_join": 10,
                "filtered": "100.00",
                "using_index": true,
                "cost_info": {
                  "read_cost": "3.63",
                  "eval_cost": "2.06",
                  "prefix_cost": "29.85",
                  "data_read_per_join": "165"
                },
                "used_columns": [
                  "product_id",
                  "category_id"
                ],
                "attached_condition": "(`atulecarter_atul_demo1`.`products_categories`.`product_id` <> 175)"
              }
            },
            {
              "table": {
                "table_name": "products",
                "access_type": "eq_ref",
                "possible_keys": [
                  "PRIMARY",
                  "status"
                ],
                "key": "PRIMARY",
                "used_key_parts": [
                  "product_id"
                ],
                "key_length": "3",
                "ref": [
                  "atulecarter_atul_demo1.products_categories.product_id"
                ],
                "rows_examined_per_scan": 1,
                "rows_produced_per_join": 0,
                "filtered": "5.00",
                "cost_info": {
                  "read_cost": "10.32",
                  "eval_cost": "0.10",
                  "prefix_cost": "42.24",
                  "data_read_per_join": "2K"
                },
                "used_columns": [
                  "product_id",
                  "product_type",
                  "status",
                  "company_id",
                  "usergroup_ids",
                  "parent_product_id"
                ],
                "attached_condition": "((`atulecarter_atul_demo1`.`products`.`company_id` = `atulecarter_atul_demo1`.`companies`.`company_id`) and ((`atulecarter_atul_demo1`.`products`.`usergroup_ids` = '') or find_in_set(0,`atulecarter_atul_demo1`.`products`.`usergroup_ids`) or find_in_set(1,`atulecarter_atul_demo1`.`products`.`usergroup_ids`)) and (`atulecarter_atul_demo1`.`products`.`status` = 'A') and (`atulecarter_atul_demo1`.`products`.`product_type` <> 'D'))"
              }
            },
            {
              "table": {
                "table_name": "prices",
                "access_type": "ref",
                "possible_keys": [
                  "usergroup",
                  "product_id",
                  "lower_limit",
                  "usergroup_id"
                ],
                "key": "usergroup",
                "used_key_parts": [
                  "product_id"
                ],
                "key_length": "3",
                "ref": [
                  "atulecarter_atul_demo1.products_categories.product_id"
                ],
                "rows_examined_per_scan": 3,
                "rows_produced_per_join": 0,
                "filtered": "3.26",
                "index_condition": "((`atulecarter_atul_demo1`.`prices`.`lower_limit` = 1) and (`atulecarter_atul_demo1`.`prices`.`usergroup_id` in (0,0,1)))",
                "cost_info": {
                  "read_cost": "1.56",
                  "eval_cost": "0.01",
                  "prefix_cost": "44.10",
                  "data_read_per_join": "1"
                },
                "used_columns": [
                  "product_id",
                  "price",
                  "percentage_discount",
                  "lower_limit",
                  "usergroup_id"
                ],
                "attached_condition": "((`atulecarter_atul_demo1`.`prices`.`price` >= 170.99) and (`atulecarter_atul_demo1`.`prices`.`price` <= 188.99))"
              }
            },
            {
              "table": {
                "table_name": "prices_2",
                "access_type": "ref",
                "possible_keys": [
                  "usergroup",
                  "product_id",
                  "lower_limit",
                  "usergroup_id"
                ],
                "key": "usergroup",
                "used_key_parts": [
                  "product_id"
                ],
                "key_length": "3",
                "ref": [
                  "atulecarter_atul_demo1.products_categories.product_id"
                ],
                "rows_examined_per_scan": 3,
                "rows_produced_per_join": 0,
                "filtered": "9.74",
                "not_exists": true,
                "cost_info": {
                  "read_cost": "0.15",
                  "eval_cost": "0.00",
                  "prefix_cost": "44.29",
                  "data_read_per_join": "0"
                },
                "used_columns": [
                  "product_id",
                  "price",
                  "lower_limit",
                  "usergroup_id"
                ],
                "attached_condition": "(<if>(found_match(prices_2), isnull(`atulecarter_atul_demo1`.`prices_2`.`price`), true) and <if>(is_not_null_compl(prices_2), ((`atulecarter_atul_demo1`.`prices_2`.`lower_limit` = 1) and (`atulecarter_atul_demo1`.`prices_2`.`price` < `atulecarter_atul_demo1`.`prices`.`price`) and (`atulecarter_atul_demo1`.`prices_2`.`usergroup_id` in (0,0,1))), true))"
              }
            },
            {
              "table": {
                "table_name": "descr1",
                "access_type": "eq_ref",
                "possible_keys": [
                  "PRIMARY",
                  "product_id"
                ],
                "key": "PRIMARY",
                "used_key_parts": [
                  "product_id",
                  "lang_code"
                ],
                "key_length": "9",
                "ref": [
                  "atulecarter_atul_demo1.products_categories.product_id",
                  "const"
                ],
                "rows_examined_per_scan": 1,
                "rows_produced_per_join": 0,
                "filtered": "100.00",
                "cost_info": {
                  "read_cost": "0.01",
                  "eval_cost": "0.00",
                  "prefix_cost": "44.30",
                  "data_read_per_join": "68"
                },
                "used_columns": [
                  "product_id",
                  "lang_code",
                  "product",
                  "full_description"
                ]
              }
            }
          ]
        }
      }
    }
  }
}

Result

product_id product company_name price product_ids product_types parent_product_ids product_type parent_product_id full_description
106 Nokia E5-00 CS-Cart 179.99000000 106 P 0 P 0 <p>Discover more ways to stay connected with friends, family, business contacts and everyone important to you with the Nokia E5-00. It has everything you need to stay in touch with a variety of email and messaging options, while also helping you to take and share pics and videos, explore the web, connect through social networking, access work and personal email, navigate your day and more. The affordable Nokia E5 even manages to fit a full QWERTY keyboard into its compact, eye-catching design for quick and easy messaging on the go. Plus, there are plenty of features to make it the perfect business-focused device. Stay productive and stay in the loop with work no matter where you are with simple setup and access for your corporate email account. The Nokia E5 makes communicating with work a breeze with Mail for Exchange, the free, direct and secure corporate email solution that offers a robust desktop-like email experience right on your phone, with email, calendar, contacts and more. Plus, your work email shows up on your phone instantly, so you don&rsquo;t have to wait for important emails. The Nokia E5 also features a fully integrated Microsoft Communicator Mobile client, to provide your mobile device the same great IM, contacts and usability that you enjoy on your computer. Keep in touch however you like with a variety of ways to connect to others with the Nokia E5. The home screen offers an easy visual way to view your contacts and makes it easy to organize the people you talk to most. The Nokia E5 also features one-click access to messaging as well as easy email setup and support for plenty of popular personal email services. The leading IM services have also been seamlessly integrated onto the phone. The Nokia E5 also offers free voice-guided navigation from Ovi Maps so you always know where you&rsquo;re going. Plus customize your phone with thousands of available apps from Ovi Store. Connect with everyone and everything you want with the Nokia E5.</p>
101 Nokia X3-02 CS-Cart 188.88000000 101 P 0 P 0 <p>Stay connected and keep yourself entertained wherever you roam with the sleek Nokia X3-02 unlocked GSM mobile phone. This stunning, touch-and-type phone features a keypad for easy messaging and a touch display for one-handed navigation. Touch and type is ideal for SMS and social networking where fast and frequent input is needed, while touch is ideal for functions such as setting alarms, smooth browsing and controlling applications like music and games.</p>
206 RT-N66U Dual-Band Wireless-N900 Gigabit Router CS-Cart 179.99000000 206 P 0 P 0 <div style="font-size: 12px; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff; position: relative; z-index: 1; color: #222222; line-height: 18px;"> <div class="clearfix" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"><span style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <div style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"><span style="border-image: initial; font-weight: bold; font-style: inherit; font-size: 25px; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;">Incredible Performance with Incredible Control</span> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">The ASUS RT-N66U dual-band wireless-N900 gigabit router delivers incredible performance and coverage range. With new ASUSWRT UI, quickly setup your network, customize user access, and monitor signal strength. Following the award-winning RT-N56U, the RT-N66U increases Wi-Fi speed for both 5 GHz and 2.4 GHz transmission by 50% up to 900Mbps that makes it ideal for bandwidth demanding tasks such as 3D HD video steaming, multiplayer gaming, USB hard drive file sharing, and USB connected printer sharing. Built-in Wi-Fi amplifiers make the RT-N66U the perfect wireless router for larger, multi-level homes and buildings with signal range that reaches virtually any area.<br style="padding: 0px; margin: 0px;" /><br style="padding: 0px; margin: 0px;" />Whether you&rsquo;re a tech-savvy enthusiast or a first-time user, the RT-N66U is exceptional easy to use with CD-free, Quick Installation Setup (QIS) that lets you plug-n-surf right out of the box and connect PCs, smartphones, tablets, and other wireless devices quickly. Thanks to its refined interface tools, you get control like never before, letting you monitor signal strength, setup parental settings, and other useful functions in a robust yet intuitive way.</p> </div> <div style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Designed for Class-Leading Speed and Range</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Designed with the latest in networking technology, the RT-N66U delivers exceptionally fast wired and wireless connectivity. What&rsquo;s more, it comes with a powerful detachable Wi-Fi antenna to further extend wireless range.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> <br style="padding: 0px; margin: 0px;" /> <div class="columns_ab" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="column"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Dual-Band Connectivity for Lag-Free Entertainment</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Delivering both 2.4 GHz and 5 GHz concurrent bands up to 450Mbps and 450Mbps respectively, the RT-N66U has a total speed of up to 900Mbps connectivity to provide speed with stability. Perform basic internet tasks like Web browsing and file downloading under the 2.4 GHz band, while also simultaneously streaming 3D HD content and other demanding applications smoothly on the 5 GHz band.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> <div class="column last"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Optimized and Reliable Wireless Coverage via Ai Radar</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">ASUS Ai Radar intelligently strengthens connections to wireless devices. With high-powered amplification and beam package, it provides optimized signals in any direction with better coverage to improve data throughput.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> </div> <br style="padding: 0px; margin: 0px;" /> <div class="columns_ab" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="column" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Easy Setup Through Your Tablet, Smartphone, or PC</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">With the RT-N66U, setup is simple. Simply power and connect the router and then open a bowser on a Wi-Fi-enabled device like a laptop or tablet. You will be taken to a setup page with a prompt to enter the ID/password from your Internet provider and that&rsquo;s it! Now setting up your network is easier than ever.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> <div class="column last" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Powerful functions, easiest management</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">With the ASUSWRT Dashboard UI, setup, monitor, and control network applications all in one intuitive area. The whole new dashboard interface lets you manage all clients and settings on a single graphical interface and provides 1-click updates.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> </div> <br style="padding: 0px; margin: 0px;" /> <div class="columns_ab" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="column" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Optimize Your Network for You</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Do you game a lot, or spend most of your time streaming videos? Whatever your planned use is, the RT-N66U has a Quality of Service (QoS) that lets you select how much bandwidth is prioritized for virtually any task. Plus, the traffic monitor allows you to check your Web usage in a clear and graphical interface.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> <div class="column last" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Two Multi-Functional Built-in USB ports</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Featuring connectivity to devices, FTPs, SAMBA, UPnP AV servers, and DLNA support, the RT-N66U makes sharing and networking easier with two built-in USB ports. Download HTTP, FTP, and P2P files to a router-connected USB storage device all day without the need of PC. Additionally, the twin USB ports allow network printer and file server connections, so you perform multiple tasks at once.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> </div> <br style="padding: 0px; margin: 0px;" /> <div class="columns_ab" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="column" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Download and Stream From Anywhere</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Download Master and DLNA server lets you download and play multimedia files stored on a router-attached USB storage device on DLNA-compatible devices such as PC, tablet, PS3, XBOX, and Internet TV. Download Master can also download files while a PC is turned off, and allows you to manage and monitor download status remotely.</p></div> <div class="column last" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Powerful Online Multitasking up to 300,000 Data Sessions</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Support f or a massive data pipeline of up to 300,000 data sessions means the RT-N66U has around 20 times the networking capacity of other conventional routers for exceptionally smooth performance.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> </div> <br style="padding: 0px; margin: 0px;" /> <div class="columns_ab" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="column" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Separate and Secure Wi-Fi Network via Guest Network Access</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">The RT-N66U supports up to three wireless networks over the 2.4 GHz band and three over the 5 GHz band, so it can protect computers from any unauthorized access, hacking and virus attacks. The parental control allows you to set up your kids' computer access times.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> <div class="column last" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">VPN Server Enabled</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Easily set up a VPN server to surf the Web and access data&mdash;no matter where you are. Featuring MPPE encryption, your data transmission will be secure and confidential.</p> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;"></p> </div> </div> <br style="padding: 0px; margin: 0px;" /> <div class="columns_ab" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="column" style="border-image: initial; font-style: inherit; font-family: inherit; padding: 0px; margin: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.4em; margin-left: 0px; border-image: initial; font-weight: normal; font-style: inherit; font-size: 21px; font-family: inherit; color: #0090ff; line-height: 1; background-image: none; height: auto; padding: 0px; border: 0px initial initial;">Flexible Installation with Versatile Design</h3> <p style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 4em; margin-left: 0px; border-image: initial; font-style: inherit; font-family: inherit; border: 0px initial initial;">Wall-mountable, the RT-N66U fits nearly any space in the home or office.</p> </div></div> </span></div> </div>