RSI-SHOP Posted March 16, 2014 Share Posted March 16, 2014 Witam. Mam pytanie czy istnieje jakieś zapytanie z poziomu managera Sql w panelu administratora odnośnie eksportu tylko nowych produktów ?? Link to comment Share on other sites More sharing options...
0 vekia Posted March 18, 2014 Share Posted March 18, 2014 SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, MAX(image_shop.`id_image`) id_image, il.`legend`, m.`name` AS manufacturer_name, product_shop.`date_add` > DATE_FORMAT(NOW() - INTERVAL 14 DAY, '%Y-%m-%d') as new, MAX(product_attribute_shop.id_product_attribute) id_product_attribute FROM `ps_product` p INNER JOIN ps_product_shop product_shop ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_product_lang` `pl` ON p.`id_product` = pl.`id_product` AND pl.`id_lang` = 1 AND pl.id_shop = 1 LEFT JOIN `ps_image` `i` ON i.`id_product` = p.`id_product` LEFT JOIN ps_image_shop image_shop ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1 AND image_shop.cover=1) LEFT JOIN `ps_image_lang` `il` ON i.`id_image` = il.`id_image` AND il.`id_lang` = 1 LEFT JOIN `ps_manufacturer` `m` ON m.`id_manufacturer` = p.`id_manufacturer` LEFT OUTER JOIN `ps_product_attribute` pa ON p.`id_product` = pa.`id_product` LEFT JOIN ps_product_attribute_shop product_attribute_shop ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1 AND product_attribute_shop.default_on = 1) LEFT JOIN ps_stock_available stock ON (stock.id_product = p.id_product AND stock.id_product_attribute = IFNULL(`product_attribute_shop`.id_product_attribute, 0) AND stock.id_shop = 1 ) WHERE (product_shop.`active` = 1) AND (product_shop.`visibility` IN ("both", "catalog")) AND (product_shop.`date_add` > DATE_FORMAT(NOW() - INTERVAL 14 DAY, '%Y-%m-%d')) AND (p.`id_product` IN ( SELECT cp.`id_product` FROM `ps_category_group` cg LEFT JOIN `ps_category_product` cp ON (cp.`id_category` = cg.`id_category`) WHERE cg.`id_group` AND p.`id_product` IN ( SELECT cp.`id_product` FROM `ps_category_group` cg LEFT JOIN `ps_category_product` cp ON (cp.`id_category` = cg.`id_category`) WHERE cg.`id_group` = 1 ) )) GROUP BY product_shop.id_product ORDER BY p.`date_add` DESC LIMIT 12 zapytanie jest zmień tylko INTERVAL 14 DAY zgodnie z włąsnymi potrzebami jest to liczba dni (produkty starsze niż 14 dni nie będą uznawane za nowe) 2 Link to comment Share on other sites More sharing options...
0 RSI-SHOP Posted March 18, 2014 Author Share Posted March 18, 2014 (edited) Kurcze Vekia jesteś najlepszy Dzięki wielki Ale jest błąd w postaci : 2 błędów Kiedy używanych jest wiele tabel, każdy atrybut musi odnosić się do tablicy. Błąd Edited March 18, 2014 by mroczus87 (see edit history) Link to comment Share on other sites More sharing options...
0 vekia Posted March 20, 2014 Share Posted March 20, 2014 fakt, w zapleczu to nie działa, jednak w phpmyadmin śmiga aż miło chyba zbyt rozbudowane zapytanie aby back office to ogarnął :/ Link to comment Share on other sites More sharing options...
0 RSI-SHOP Posted March 20, 2014 Author Share Posted March 20, 2014 Dokładnie ogarnąłem to po jakimś czasie , że w phpmyadmin pójdzie ale dzięki za pomoc. Link to comment Share on other sites More sharing options...
Question
RSI-SHOP
Witam.
Mam pytanie czy istnieje jakieś zapytanie z poziomu managera Sql w panelu administratora odnośnie eksportu tylko nowych produktów ??
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now