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 = 'de' 
  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 = 509 
  LEFT JOIN cscart_seo_names ON cscart_seo_names.object_id = 8370 
  AND cscart_seo_names.type = 'p' 
  AND cscart_seo_names.dispatch = '' 
  AND cscart_seo_names.lang_code = 'de' 
  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' 
  AND cscart_discussion.company_id = 1 
WHERE 
  cscart_products.product_id = 8370 
  AND (
    companies.status = 'A' 
    OR cscart_products.company_id = 0
  ) 
GROUP BY 
  cscart_products.product_id

Query time 0.00228

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE cscart_products const PRIMARY,status,product_id_idx,status_idx PRIMARY 3 const 1
1 SIMPLE popularity const PRIMARY,total PRIMARY 3 const 1
1 SIMPLE cscart_product_sales const PRIMARY,pa PRIMARY 6 const,const 1
1 SIMPLE cscart_product_prices ref usergroup,product_id,lower_limit,usergroup_id product_id 3 const 1 Using where
1 SIMPLE cscart_product_descriptions const PRIMARY,product_id PRIMARY 9 const,const 1 Using where
1 SIMPLE shared_prices ref usergroup,product_id,company_id,lower_limit,usergroup_id product_id 3 const 2 Using where
1 SIMPLE companies eq_ref PRIMARY PRIMARY 4 const 1 Using where
1 SIMPLE cscart_products_categories ref PRIMARY,pt,product_id_idx,category_id_idx,product_category_idx,category_product_idx product_id_idx 3 const 2
1 SIMPLE cscart_categories eq_ref PRIMARY,c_status,p_category_id,idx_category_id PRIMARY 3 mahm3t_cs443.cscart_products_categories.category_id 1 Using where
1 SIMPLE cscart_seo_names const PRIMARY,dispatch PRIMARY 210 const,const,const,const,const 1 Using where
1 SIMPLE cscart_discussion const object_id,company_id object_id 10 const,const,const 1 Using where

Result

product_id product_code product_type status company_id list_price amount weight length width height shipping_freight low_avail_limit timestamp updated_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 shipping_availability_id ms_type master_id unit_price aval_status facebook_obj_type cp_additinal_product_enabled cp_additinal_product_items cp_delivery_date youtube_link show_youtube_video replace_main_image size_chart_id staff_notes emo_pn emo_paczka emo_dostawca emo_kreskowy emo_nrdostawcy emo_uwagi emo_source lang_code product shortname short_description full_description meta_keywords meta_description search_words page_title age_warning_message unit_name promo_text stop_words amp_description custom_header price category_ids popularity company_name sales_amount seo_name seo_path discussion_type
8370 STG-A-IZK1 P A 1 0.00 0.00 16.000 0 0 0 0.00 0 1454150655 1743601029 0 N N N B N R N N N Y 10 0 N 0 0 0 0 6 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;} 10 N 0 22 10 activity N [] 0 N N 0 0 de Imprägnierung für Ziegelsteine Rustik <p style="text-align: justify;"> Die Impr&auml;gnierung &nbsp;ist eine wei&szlig;e, wasserl&ouml;sliche, sch&uuml;tzende und dekorative Impr&auml;gnierung auf Silikonbasis, zur oberfl&auml;chlichen Hydrophobierung von Ziegelriemchen geeignet, aber ebenso f&uuml;r Sandstein, Klinker oder Dachziegel geeignet. Im Innen- und Au&szlig;enbereich anwendbar.&nbsp;</p> <p style="text-align: justify; font-weight: bold;"> Anwendung</p> <p style="text-align: justify;"> Vor Arbeitsbeginn die Oberfl&auml;che von Staub, Schmutz, &Ouml;l oder fettigen Substanzen reinigen. Oberfl&auml;chen, die nicht impr&auml;gniert werden sollen, z.B. Fenster, Metall- oder Holzelemente, polierte Steine, etc., m&uuml;ssen sorgf&auml;ltig gesch&uuml;tzt werden, bspw. durch Abkleben oder Abdecken. Verschmutzte Stellen sollten sofort mit Waschbenzin gereinigt werden. Vor dem Gebrauch umr&uuml;hren. Riemchen und Fugen fr&uuml;hestens 7 Tage nach der Verlegung impr&auml;gnieren. Neuer Estrichbeton oder Kalkzementputz darf fr&uuml;hestens nach Ablauf von 24-30 Tagen behandelt werden. Impr&auml;gnierung muss an trockenen und regenfreien Tagen erfolgen, bei einer Temperatur zwischen +5&deg;C und +25&deg;C.</p> <p style="text-align: justify; font-weight: bold;"> Aufbringung</p> <p style="text-align: justify;"> Gipsriemchen einfach mittels Aufspr&uuml;hverfahren behandeln. bei Betonriemchen und anderen ist die Impr&auml;gnierung mit Pinsel oder Spr&uuml;hverfahren durchf&uuml;hrbar. Das Mittel muss gleichm&auml;&szlig;ig aufgetragen werden. Bei stark absorbierenden Betonfl&auml;chen zweifach auftragen (nass auf nass). Eine zus&auml;tzliche Schicht je nach Saugf&auml;higkeit des Untergrundes und der Temperatur auftragen, aber nicht sp&auml;ter als 20 Minuten nach der ersten Schicht. Die impr&auml;gnierte Oberfl&auml;che sollte gr&uuml;ndlich und gleichm&auml;&szlig;ig ges&auml;ttigt sein.&nbsp;</p> <p style="text-align: justify; font-weight: bold;"> Verbrauch</p> <p style="text-align: justify;"> 0,2 - 0,25l / m&sup2; bei einmaliger Impr&auml;gnierung. Der Verbrauch h&auml;ngt von der Absorption des impr&auml;gnierten Untergrundes und von der Anwendungstechnik ab.</p> <p style="text-align: justify; font-weight: bold;"> Lagerung</p> <p style="text-align: justify;"> In trockenen R&auml;umen mit einer Temperatur zwischen +5&deg;C und +30&deg;C in der Originalverpackung lagern. Haltbarkeit bis zu 12 Monate ab dem Produktionsdatum. Kontakt mit der Haut vermeiden. Bei Kontakt mit den Augen sofort gr&uuml;ndlich aussp&uuml;len und einen Arzt kosultieren.</p> <p style="text-align: justify;"> <strong>Verarbeitung</strong></p> <p style="text-align: justify;"> Um eine korrekte Impr&auml;gnierung zu erzielen ist es notwendig die Oberfl&auml;che angemessen vorzubereiten. Die Oberfl&auml;che sollte gleichm&auml;&szlig;ig, por&ouml;s, trocken, sauber und fettfrei sein. Stegu Fliesen sollten zusammen mit den Fugen mindestens 7 Tage nach Abschluss der Arbeiten impr&auml;gniert werden. Kalk-Zement-Putze und Acryl, sowie Beton d&uuml;rfen beim Impr&auml;gnieren nicht &auml;lter als 21-28 Tage nach Beendigung der Arbeiten sein. Oberfl&auml;chen, die mit dem Einsatz von PCC-M&ouml;rtel oder F&uuml;llstoff repariert sind, sollten nach 6 Tagen impr&auml;gniert werden. Die behandelten Oberfl&auml;chen sollten bei trockenem Wetter und moderaten Windbedingungen impr&auml;gniert werden, bei Au&szlig;entemperaturen im Bereich von 5 bis 30 &deg;C. Vor der Arbeit sind alle nicht zu impr&auml;gnierenden Fl&auml;chen abzudecken(z.B. Fensterscheiben, Metall -und Holzteile, polierte Steine). Im Falle einer Verschmutzung reinigen Sie die Oberfl&auml;che sofort mit Waschbenzin.</p> <p style="text-align: justify;"> Die Impr&auml;gnierung kann mit einem Pinsel oder durch Spritzen aufgetragen werden. Die Anwendung h&auml;ngt von der Saugf&auml;higkeit und Struktur des Materials ab. Um die besten Ergebnisse zu erzielen, empfiehlt es sich, die Oberfl&auml;che zweimal in kurzen Abst&auml;nden zu impr&auml;gnieren mit der &ldquo;nass in nass&rdquo;-Methode (d.h. abh&auml;ngig von der Umgebungstemperatur und der Por&ouml;sit&auml;t des Materials sollte innerhalb von 30 Minuten die 2. Schicht aufgetragen werden). Die Oberfl&auml;che sollte vollst&auml;ndig und gleichm&auml;&szlig;ig impr&auml;gniert werden.</p> <p style="text-align: justify;"> Der Verbrauch des Impr&auml;gniermittels h&auml;ngt von der Saugf&auml;higkeit des behandelten Materials sowie der Anwendungstechnik ab und bel&auml;uft sich auf 2 bis 6 m2 pro 1 Liter Emulsion (bei einer Doppel-Impr&auml;gnierung). In Original-Beh&auml;ltern, in &uuml;berdachten, trockenen R&auml;umen bei Temperaturen im Bereich von 5 bis 25 &deg;C.</p> IMPRÄGNIERUNG FÜR ZIEGELSTEINE RUSTIK ✔ auf Silikonbasis ✔ für innen und außen ✔ schützend & dekorativ ✔ gut für Sandstein, Klinker & Dachziegel | Online ! IMPRÄGNIERUNG FÜR ZIEGELSTEINE RUSTIK | baubaY.de ! 2L 43.000000 509M 173602 baubaY.de 29 impraegnierung-aussen 501/502/509 B