SELECT 
  cscart_products.*, 
  cscart_product_descriptions.*, 
  MIN(
    IF(
      cscart_product_prices.percentage_discount = 0, 
      cscart_product_prices.price, 
      cscart_product_prices.price - (
        cscart_product_prices.price * cscart_product_prices.percentage_discount
      )/ 100
    )
  ) as price, 
  GROUP_CONCAT(
    IF(
      cscart_products_categories.link_type = 'M', 
      CONCAT(
        cscart_products_categories.category_id, 
        'M'
      ), 
      cscart_products_categories.category_id
    )
  ) as category_ids, 
  popularity.total as popularity, 
  IF(
    shared_prices.product_id IS NOT NULL, 
    MIN(
      IF(
        shared_prices.percentage_discount = 0, 
        shared_prices.price, 
        shared_prices.price - (
          shared_prices.price * shared_prices.percentage_discount
        )/ 100
      )
    ), 
    MIN(
      IF(
        cscart_product_prices.percentage_discount = 0, 
        cscart_product_prices.price, 
        cscart_product_prices.price - (
          cscart_product_prices.price * cscart_product_prices.percentage_discount
        )/ 100
      )
    )
  ) as price, 
  companies.company as company_name, 
  cscart_product_sales.amount as sales_amount, 
  cscart_seo_names.name as seo_name, 
  cscart_seo_names.path as seo_path, 
  cscart_discussion.type as discussion_type 
FROM 
  cscart_products 
  LEFT JOIN cscart_product_prices ON cscart_product_prices.product_id = cscart_products.product_id 
  AND cscart_product_prices.lower_limit = 1 
  AND cscart_product_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN cscart_product_descriptions ON cscart_product_descriptions.product_id = cscart_products.product_id 
  AND cscart_product_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_ult_product_prices shared_prices ON shared_prices.product_id = cscart_products.product_id 
  AND shared_prices.company_id = 1 
  AND shared_prices.lower_limit = 1 
  AND shared_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN cscart_companies as companies ON companies.company_id = cscart_products.company_id 
  INNER JOIN cscart_products_categories ON cscart_products_categories.product_id = cscart_products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = cscart_products_categories.category_id 
  AND cscart_categories.company_id = 1 
  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_products.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_products.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_products.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_products.status IN ('A', 'H') 
  LEFT JOIN cscart_product_popularity as popularity ON popularity.product_id = cscart_products.product_id 
  LEFT JOIN cscart_product_sales ON cscart_product_sales.product_id = cscart_products.product_id 
  AND cscart_product_sales.category_id = 1850 
  LEFT JOIN cscart_seo_names ON cscart_seo_names.object_id = 62585 
  AND cscart_seo_names.type = 'p' 
  AND cscart_seo_names.dispatch = '' 
  AND cscart_seo_names.lang_code = 'en' 
  AND cscart_seo_names.company_id = 1 
  LEFT JOIN cscart_discussion ON cscart_discussion.object_id = cscart_products.product_id 
  AND cscart_discussion.object_type = 'P' 
WHERE 
  cscart_products.product_id = 62585 
  AND (
    companies.status = 'A' 
    OR cscart_products.company_id = 0
  ) 
GROUP BY 
  cscart_products.product_id

Query time 0.00160

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "shared_prices",
      "access_type": "system",
      "possible_keys": [
        "usergroup",
        "product_id",
        "company_id",
        "lower_limit",
        "usergroup_id"
      ],
      "rows": 0,
      "filtered": 0,
      "const_row_not_found": true
    },
    "table": {
      "table_name": "cscart_products",
      "access_type": "const",
      "possible_keys": ["PRIMARY", "status"],
      "key": "PRIMARY",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "ref": ["const"],
      "rows": 1,
      "filtered": 100
    },
    "table": {
      "table_name": "companies",
      "access_type": "const",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "4",
      "used_key_parts": ["company_id"],
      "ref": ["const"],
      "rows": 1,
      "filtered": 100
    },
    "table": {
      "table_name": "popularity",
      "access_type": "const",
      "possible_keys": ["PRIMARY", "total"],
      "key": "PRIMARY",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "ref": ["const"],
      "rows": 1,
      "filtered": 100
    },
    "table": {
      "table_name": "cscart_product_sales",
      "access_type": "const",
      "possible_keys": ["PRIMARY", "pa"],
      "key": "PRIMARY",
      "key_length": "6",
      "used_key_parts": ["category_id", "product_id"],
      "ref": ["const", "const"],
      "rows": 1,
      "filtered": 100
    },
    "table": {
      "table_name": "cscart_product_prices",
      "access_type": "range",
      "possible_keys": ["usergroup", "product_id", "lower_limit", "usergroup_id"],
      "key": "product_id",
      "key_length": "9",
      "used_key_parts": ["product_id", "usergroup_id", "lower_limit"],
      "rowid_filter": {
        "range": {
          "key": "lower_limit",
          "used_key_parts": ["lower_limit", "product_id", "usergroup_id"]
        },
        "rows": 2,
        "selectivity_pct": 0.074128984
      },
      "rows": 2,
      "filtered": 100,
      "attached_condition": "trigcond(1) and trigcond(cscart_product_prices.product_id = 62585 and cscart_product_prices.lower_limit = 1 and cscart_product_prices.usergroup_id in (0,0,1))"
    },
    "table": {
      "table_name": "cscart_product_descriptions",
      "access_type": "const",
      "possible_keys": ["PRIMARY", "product_id"],
      "key": "product_id",
      "key_length": "9",
      "used_key_parts": ["product_id", "lang_code"],
      "ref": ["const", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "trigcond(cscart_product_descriptions.lang_code = 'en')"
    },
    "table": {
      "table_name": "cscart_products_categories",
      "access_type": "ref",
      "possible_keys": ["PRIMARY", "pt"],
      "key": "pt",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "ref": ["const"],
      "rows": 4,
      "filtered": 100,
      "using_index": true
    },
    "table": {
      "table_name": "cscart_categories",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY", "c_status", "p_category_id"],
      "key": "PRIMARY",
      "key_length": "3",
      "used_key_parts": ["category_id"],
      "ref": ["cscart_migrate.cscart_products_categories.category_id"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "cscart_categories.company_id = 1 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')"
    },
    "table": {
      "table_name": "cscart_seo_names",
      "access_type": "const",
      "possible_keys": ["PRIMARY", "dispatch"],
      "key": "dispatch",
      "key_length": "210",
      "used_key_parts": [
        "dispatch",
        "object_id",
        "type",
        "lang_code",
        "company_id"
      ],
      "ref": ["const", "const", "const", "const", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "trigcond(cscart_seo_names.`type` = 'p' and cscart_seo_names.dispatch = '' and cscart_seo_names.lang_code = 'en')"
    },
    "table": {
      "table_name": "cscart_discussion",
      "access_type": "ref",
      "possible_keys": ["object_id"],
      "key": "object_id",
      "key_length": "6",
      "used_key_parts": ["object_id", "object_type"],
      "ref": ["const", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "trigcond(cscart_discussion.object_type = 'P')"
    }
  }
}

Result

product_id product_code product_type trustmark_origin trustmark_certified trustmark_leadtime trustmark_location trustmark_return owner_id status company_id list_price amount weight length width height shipping_freight low_avail_limit timestamp usergroup_ids is_edp edp_shipping unlimited_download tracking free_shipping zero_price_action is_pbp is_op is_oper is_returnable return_period avail_since out_of_stock_actions localization min_qty max_qty qty_step list_qty_count tax_ids age_verification age_limit options_type exceptions_type details_layout shipping_params updated_timestamp pricing_note use_new_layout category_image tax_code upc_code product_detail_ids nav_sku sku_columns nav_review_user_id hide_price vendor_fulfilled hide_commercial_price non_returnable ble_basics commercial_hidden allow_configurator enable_customize enable_buy_american base_cost redline_p lang_code product shortname short_description full_description meta_keywords meta_description search_words page_title age_warning_message internal promo_text price category_ids popularity company_name sales_amount seo_name seo_path discussion_type
62585 BLE-C-ULO-LED P E C M A D 0 A 1 550.00 1000 0.000 0 0 0 0.00 0 1405396800 0 N N N D N R N N N Y 10 0 N 0 0 0 0 13 N 0 P F default a:5:{s:16:"min_items_in_box";i:0;s:16:"max_items_in_box";i:0;s:10:"box_length";i:0;s:9:"box_width";i:0;s:10:"box_height";i:0;} 1747667004 Price increased 5% from $363 to $381 - DC 6/1/21 Price increased 10% from $381 to $420 - DC 6/1/22 Price increased from $420 to $550 - DC 10/31/22 Y none none 1626,1627,1628 BLE-C {"23116":12,"22644":13,"21954":4,"22891":6,"22866":8,"22867":8,"22868":8,"22872":9,"22852":10,"23861":4,"23862":4,"23863":4} 1008383 0 0 0 1 0 0 0 0 1 0.00 0 en Outback LED Cord Pendant Light <p>Timeless styles and contemporary technology meet in this pendant light. With its RLM warehouse shade and metal guard, the Outback embodies classic industrial designs. This authentic rugged edge feels at home in a diverse range of décors, including farmhouse and nautical. An array of finish and customizing options lets every home or business embrace a truly unique appearance.</p> <p>The Outback integrates high-performance components into its structure to offer modern efficiency without forfeiting style. Little electricity is wasted as heat when the LEDs emit illumination, which scales down a building’s power demands. Thanks to this technology, the Outback is better for the environment and better for your bottom line!</p> <p>|break|</p> <ul> <li>Manufactured and hand-crafted in the USA</li> <li>Made-to-order, learn more about the process<span> </span><a href="https://www.barnlight.com/video-gallery/">here</a>! </li> </ul> LED pendant lighting, classic lighting, rlm lights, warehouse shade with cast guard, commercial lighting, outback light, versatile up and down lighting, vintage light, cord hung, LED ceiling light, Our Outback Pendant combines cutting-edge LED technology with a classic RLM warehouse shade and aluminum cast guard. Save energy without sacrificing style! the outback led pendant, led pendant light, outback led pendant light, outback light, led pendant, BLE-C-ULO-PC-LED, BLE-C-ULO12-PC-LED, BLE-C-ULO14-PC-LED, BLE-C-ULO16-PC-LED, BLE-C-ULO18-PC-LED, BLE-C-ULO20-PC-LED, The Outback LED Cord Hung Pendant, The Outback LED Cord Hung Pendants, The Outback LED Cord Hung Pendant light, The Outback LED Cord Hung Pendant lights, The Outback LED Cord Hung Pendant lighting, The Outback LED Industrial Cord Hung Pendant, The Outback LED Industrial Cord Hung Pendants, The Outback LED Industrial Cord Hung Pendant light, The Outback LED Industrial Cord Hung Pendant lights, The Outback LED Industrial Cord Hung Pendant lighting, Outback LED Industrial Cord Hung Pendant, Outback LED Industrial Cord Hung Pendants, Outback LED Industrial Cord Hung Pendant light, Outback LED Industrial Cord Hung Pendant lights, Outback LED Industrial Cord Hung Pendant lighting, The Outback LED Industrial Pendant, The Outback LED Industrial Pendants, The Outback LED Industrial Pendant light, The Outback LED Industrial Pendant lights, The Outback LED Industrial Pendant lighting, Outback LED Industrial Pendant, Outback LED Industrial Pendants, Outback LED Industrial Pendant light, Outback LED Industrial Pendant lights, Outback LED Industrial Pendant lighting, LED pendant, pendant led, cord led, led cord, led cord hung, led cord mount, cord hung led, cord mount led, BLE-C-ULO12, BLE-C-ULO14, BLE-C-ULO16, BLE-C-ULO18, BLE-C-ULO20, Industrial light, industrial lights, industrial lighting, industrial lighting fixture, industrial lighting fixtures, rugged light, rugged lights, rugged lighting, rugged lighting fixture, rugged lighting fixtures, Vintage Industrial light, vintage industrial lights, vintage industrial lighting, vintage industrial lighting fixture, vintage industrial lighting fixtures, cast guard light, cast guard lights, cast guard lighting, cast guard lighting fixture, cast guard lighting fixtures, Queensland collection, queensland lighting, queensland light, queensland lights, queensland lighting, queensland light fixture, queensland light fixtures, Queens land collection, queens land lighting, queens land light, queens land lights, queens land lighting, queens land light fixture, queens land light fixtures, Queensland, Industrial cord hung pendant, industrial cord hung pendants, industrial cord hung pendant light, Industrial cord hung pendant lights, Industrial cord hung pendant lighting, Industrial cord hung ceiling pendant, Industrial cord hung ceiling pendants, Industrial cord hung pendant light, Industrial cord hung pendant lights, Industrial cord hung pendant lighting, Industrial cord hung ceiling light, Industrial cord hung ceiling lights, Industrial cord hung ceiling lighting, Industrial cord pendant, industrial cord pendants, industrial cord pendant light, Industrial cord pendant lights, Industrial cord pendant lighting, Industrial cord ceiling pendant, Industrial cord ceiling pendants, Industrial cord pendant light, Industrial cord pendant lights, Industrial cord pendant lighting, Industrial cord ceiling light, Industrial cord ceiling lights, Industrial cord ceiling lighting, rugged cord hung pendant, rugged cord hung pendants, rugged cord hung pendant light, rugged cord hung pendant lights, rugged cord hung pendant lighting, rugged cord hung ceiling pendant, rugged cord hung ceiling pendants, rugged cord hung pendant light, rugged cord hung pendant lights, rugged cord hung pendant lighting, rugged cord hung ceiling light, rugged cord hung ceiling lights, rugged cord hung ceiling lighting, rugged cord pendant, rugged cord pendants, rugged cord pendant light, rugged cord pendant lights, rugged cord pendant lighting, rugged cord ceiling pendant, rugged cord ceiling pendants, rugged cord pendant light, rugged cord pendant lights, rugged cord pendant lighting, rugged cord ceiling light, rugged cord ceiling lights, rugged cord ceiling lighting, cast guard cord hung pendant, cast guard cord hung pendants, cast guard cord hung pendant light, cast guard cord hung pendant lights, cast guard cord hung pendant lighting, cast guard cord hung ceiling pendant, cast guard cord hung ceiling pendants, cast guard cord hung pendant light, cast guard cord hung pendant lights, cast guard cord hung pendant lighting, cast guard cord hung ceiling light, cast guard cord hung ceiling lights, cast guard cord hung ceiling lighting, cast guard cord pendant, cast guard cord pendants, cast guard cord pendant light, cast guard cord pendant lights, cast guard cord pendant lighting, cast guard cord ceiling pendant, cast guard cord ceiling pendants, cast guard cord pendant light, cast guard cord pendant lights, cast guard cord pendant lighting, cast guard cord ceiling light, cast guard cord ceiling lights, cast guard cord ceiling lighting, Queensland Cord, Queensland Cord Hung, Queensland Cord Hung Light, Queensland Cord Hung Lights, Queensland Cord Hung Lighting, Queensland Cord Hung Pendant, Queensland Cord Hung Pendants, Queensland Cord Hung Pendant Light, Queensland Cord Hung pendant Lights, Queensland Cord Hung Pendant Lighting, Queensland Cord Hung Ceiling Pendant, Queensland Cord Hung Ceiling Pendants, Queensland Cord Hung Ceiling Light, Queensland Cord Hung Ceiling Lights, Queensland Cord Hung Ceiling Lighting, Queens land Cord Hung, Queens land Cord Hung Light, Queens land Cord Hung Lights, Queens land Cord Hung Lighting, Queens land Cord Hung Pendant, Queens land Cord Hung Pendants, Queens land Cord Hung Pendant Light, Queens land Cord Hung pendant Lights, Queens land Cord Hung Pendant Lighting, Queens land Cord Hung Ceiling Pendant, Queens land Cord Hung Ceiling Pendants, Queens land Cord Hung Ceiling Light, Queens land Cord Hung Ceiling Lights, Queens land Cord Hung Ceiling Lighting, industrial pendant, industrial pendants, industrial ceiling pendant, industrial ceiling pendants, industrial ceiling light, industrial ceiling lights, industrial ceiling lighting, rugged pendant, rugged pendants, rugged ceiling pendant, rugged ceiling pendants, rugged ceiling light, rugged ceiling lights, rugged ceiling lighting, cast guard pendant, cast guard pendants, cast guard ceiling pendant, cast guard ceiling pendants, cast guard ceiling light, cast guard ceiling lights, cast guard ceiling lighting, Queensland pendant, Queensland pendants, queensland pendant light, queensland pendant lights, queensland pendant lighting, queensland ceiling pendant, queensland ceiling pendants, queensland ceiling light, queensland ceiling lights, queensland ceiling lighting, Queens land pendant, Queens land pendants, queens land pendant light, queens land pendant lights, queens land pendant lighting, queens land ceiling pendant, queens land ceiling pendants, queens land ceiling light, queens land ceiling lights, queens land ceiling lighting, LED Industrial light, LED industrial lights, LED industrial lighting, LED industrial lighting fixture, LED industrial lighting fixtures, LED rugged light, LED rugged lights, LED rugged lighting, LED rugged lighting fixture, LED rugged lighting fixtures, LED Vintage Industrial light, LED vintage industrial lights, LED vintage industrial lighting, LED vintage industrial lighting fixture, LED vintage industrial lighting fixtures, LED cast guard light, LED cast guard lights, LED cast guard lighting, LED cast guard lighting fixture, LED cast guard lighting fixtures, LED metropolis, LED metropolis collection, LED metropolis light, LED metropolis lights, LED metropolis lighting, Industrial LED light, industrial LED lights, industrial LED lighting, industrial LED lighting fixture, industrial LED lighting fixtures, rugged LED light, rugged LED lights, rugged LED lighting, rugged LED lighting fixture, rugged LED lighting fixtures, Vintage Industrial LED light, vintage industrial LED lights, vintage industrial LED lighting, vintage industrial LED lighting fixture, vintage industrial LED lighting fixtures, cast guard LED light, cast guard LED lights, cast guard LED lighting, cast guard LED lighting fixture, cast guard LED lighting fixtures, Queensland LED, Queens Land LED, LED Queensland, LED Queens Land, LED industrial pendant, LED industrial pendants, LED industrial ceiling pendant, LED industrial ceiling pendants, LED industrial ceiling light, LED industrial ceiling lights, LED industrial ceiling lighting, industrial LED pendant, industrial LED pendants, industrial LED ceiling pendant, industrial LED ceiling pendants, industrial LED ceiling light, industrial LED ceiling lights, industrial LED ceiling lighting,    LED rugged pendant, LED rugged pendants, LED rugged ceiling pendant, LED rugged ceiling pendants, LED rugged ceiling light, LED rugged ceiling lights, LED rugged ceiling lighting, rugged LED pendant, rugged LED pendants, rugged LED ceiling pendant, rugged LED ceiling pendants, rugged LED ceiling light, rugged LED ceiling lights, rugged LED ceiling lighting,    LED cast guard pendant, LED cast guard pendants, LED cast guard ceiling pendant, LED cast guard ceiling pendants, LED cast guard ceiling light, LED cast guard ceiling lights, LED cast guard ceiling lighting, cast guard LED pendant, cast guard LED pendants, cast guard LED ceiling pendant, cast guard LED ceiling pendants, cast guard LED ceiling light, cast guard LED ceiling lights, cast guard LED ceiling lighting, LED Industrial cord hung pendant, LED industrial cord hung pendants, LED industrial cord hung pendant light, LED Industrial cord hung pendant lights, LED Industrial cord hung pendant lighting, LED Industrial cord hung ceiling pendant, LED Industrial cord hung ceiling pendants, LED Industrial cord hung pendant light, LED Industrial cord hung pendant lights, LED Industrial cord hung pendant lighting, LED Industrial cord hung ceiling light, LED Industrial cord hung ceiling lights, LED Industrial cord hung ceiling lighting, LED Industrial cord pendant, LED industrial cord pendants, LED industrial cord pendant light, LED Industrial cord pendant lights, LED Industrial cord pendant lighting, LED Industrial cord ceiling pendant, LED Industrial cord ceiling pendants, LED Industrial cord pendant light, LED Industrial cord pendant lights, LED Industrial cord pendant lighting, LED Industrial cord ceiling light, LED Industrial cord ceiling lights, LED Industrial cord ceiling lighting, Industrial LED cord hung pendant, industrial LED cord hung pendants, industrial LED cord hung pendant light, Industrial LED cord hung pendant lights, Industrial LED cord hung pendant lighting, Industrial LED cord hung ceiling pendant, Industrial cord LED hung ceiling pendants, Industrial LED cord hung pendant light, Industrial LED cord hung pendant lights, Industrial LED cord hung pendant lighting, Industrial LED cord hung ceiling light, Industrial LED cord hung ceiling lights, Industrial LED cord hung ceiling lighting, Industrial LED cord pendant, industrial LED cord pendants, industrial LED cord pendant light, Industrial LED cord pendant lights, Industrial LED cord pendant lighting, Industrial LED cord ceiling pendant, Industrial LED cord ceiling pendants, Industrial LED cord pendant light, Industrial LED cord pendant lights, Industrial LED cord pendant lighting, Industrial LED cord ceiling light, Industrial LED cord ceiling lights, Industrial LED cord ceiling lighting,          LED rugged cord hung pendant, LED rugged cord hung pendants, LED rugged cord hung pendant light, LED rugged cord hung pendant lights, LED rugged cord hung pendant lighting, LED rugged cord hung ceiling pendant, LED rugged cord hung ceiling pendants, LED rugged cord hung pendant light, LED rugged cord hung pendant lights, LED rugged cord hung pendant lighting, LED rugged cord hung ceiling light, LED rugged cord hung ceiling lights, LED rugged cord hung ceiling lighting, LED rugged cord pendant, LED rugged cord pendants, LED rugged cord pendant light, LED rugged cord pendant lights, LED rugged cord pendant lighting, LED rugged cord ceiling pendant, LED rugged cord ceiling pendants, LED rugged cord pendant light, LED rugged cord pendant lights, LED rugged cord pendant lighting, LED rugged cord ceiling light, LED rugged cord ceiling lights, LED rugged cord ceiling lighting, rugged LED cord hung pendant, rugged LED cord hung pendants, rugged LED cord hung pendant light, rugged LED cord hung pendant lights, rugged LED cord hung pendant lighting, rugged LED cord hung ceiling pendant, rugged LED cord hung ceiling pendants, rugged LED cord hung pendant light, rugged LED cord hung pendant lights, rugged LED cord hung pendant lighting, rugged LED cord hung ceiling light, rugged LED cord hung ceiling lights, rugged LED cord hung ceiling lighting, rugged LED cord pendant, rugged LED cord pendants, rugged LED cord pendant light, rugged LED cord pendant lights, rugged LED cord pendant lighting, rugged LED cord ceiling pendant, rugged LED cord ceiling pendants, rugged LED cord pendant light, rugged LED cord pendant lights, rugged LED cord pendant lighting, rugged LED cord ceiling light, rugged LED cord ceiling lights, rugged LED cord ceiling lighting,          LED cast guard cord hung pendant, LED cast guard cord hung pendants, LED cast guard cord hung pendant light, LED cast guard cord hung pendant lights, LED cast guard cord hung pendant lighting, LED cast guard cord hung ceiling pendant, LED cast guard cord hung ceiling pendants, LED cast guard cord hung pendant light, LED cast guard cord hung pendant lights, LED cast guard cord hung pendant lighting, LED cast guard cord hung ceiling light, LED cast guard cord hung ceiling lights, LED cast guard cord hung ceiling lighting, LED cast guard cord pendant, LED cast guard cord pendants, LED cast guard cord pendant light, LED cast guard cord pendant lights, LED cast guard cord pendant lighting, LED cast guard cord ceiling pendant, LED cast guard cord ceiling pendants, LED cast guard cord pendant light, LED cast guard cord pendant lights, LED cast guard cord pendant lighting, LED cast guard cord ceiling light, LED cast guard cord ceiling lights, LED cast guard cord ceiling lighting, cast guard LED cord hung pendant, cast guard LED cord hung pendants, cast guard LED cord hung pendant light, cast guard LED cord hung pendant lights, cast guard LED cord hung pendant lighting, cast guard LED cord hung ceiling pendant, cast guard LED cord hung ceiling pendants, cast guard LED cord hung pendant light, cast guard LED cord hung pendant lights, cast guard LED cord hung pendant lighting, cast guard LED cord hung ceiling light, cast guard LED cord hung ceiling lights, cast guard LED cord hung ceiling lighting, cast guard LED cord pendant, cast guard LED cord pendants, cast guard LED cord pendant light, cast guard LED cord pendant lights, cast guard LED cord pendant lighting, cast guard LED cord ceiling pendant, cast guard LED cord ceiling pendants, cast guard LED cord pendant light, cast guard LED cord pendant lights, cast guard LED cord pendant lighting, cast guard LED cord ceiling light, cast guard LED cord ceiling lights, cast guard LED cord ceiling lighting, Outback Series, Outback Collection, The Outback Series, The Outback Collection, Australia collection, Australia Series, the Australia collection, the Australia Series, Queensland Collection, Queensland Series, The Queensland Collection, the Queensland Series, Queens land Collection, Queens land Series, The Queens land Collection, the Queens land Series, Out back Series, Out back Collection, The Out back Series, The Out back Collection, SPS-0160, SPS 0160, SPS0160, Outback LED Cord Pendant Light | Barn Light Electric 550.000000 1553,1594,1928,1850M 253364 Barn Light Electric Company 36 the-outback-led-cord-hung-pendant 1842/1849/1850 B