Hi Leute, hat jemand von euch einen SQL Befehl um bei allen Artikeln die Lagerbestandsanzeige zu aktivieren ? Schön wäre auch ein SQL Befehl um die Artikelmenge bei allen Artikeln um 2 zu erhöhen Über Hilfe würde ich mich sehr freuen
Lagerbestandsanzeige aktivieren: Code: UPDATE products SET gm_show_qty_info = 1; Bestand um 2 erhöhen: Code: UPDATE products SET products_quantity = products_quantity + 2; Bestand der Sonderangebote um 2 erhöhen: Code: UPDATE specials SET specials_quantity = specials_quantity + 2;
Hallo, suche auch einen Sql Befehl um für alle Artikel " Vorlage für Artikelattribute: products_options_dropdown.html " und " Vorlage für Artikelattribute in übersicht: products_options_dropdown.html "zu setzen? Sowas wie: UPDATE `products` SET `attribut_template` = 'products_options_dropdown.html' Noch was: Kann ich mit Sql auch alle Attribute so setzten das immer das Attribut ohne + summe x als erstes in der reienfolge ist?
UPDATE `products` SET `options_template` = 'products_options_dropdown.html' UPDATE `products` SET `gm_options_template` = 'products_options_dropdown.html' Da ich keine Attribute nutze, kenne ich diese Funktion leider nicht.
Nach eingabe von UPDATE `products` SET `options_template` = 'products_options_dropdown.html' kommt: WARNING(512): "Smarty error: unable to read resource: "/module/product_options/products_options_dropdown.html"" in /includes/classes/Smarty/Smarty.class.php:1103
Habs schon: Richtig ist: Code: UPDATE `products` SET `options_template` = 'product_options_dropdown.html' UPDATE `products` SET `gm_options_template` = 'product_options_dropdown.html'
Wer's brauchen kann: Jeweils im SQL-Frontend; myPHPAdmin/MySQL Bestandsliste Code: select products.products_model, products.products_quantity, products_description.products_name from products, products_description where products.products_id = products_description.products_id and products.products_id not in (Select products_id from products_attributes) ggf, anhängen: "and products.products_quantity < 3" wenn man nur die mit Bestand kleiner 3 haben möchte. ---------------------------------------------------- Dasselbe für Produkt-Attribute: Code: select products.products_model, products.products_quantity, products_description.products_name products_attributes.attributes_model, products_attributes.attributes_stock from products, products_description, products_attributes where products.products_id = products_description.products_id and products.products_id = products_attributes.products_id BestSellers: Code: select orders_products.products_model, orders_products.products_name, sum(orders_products.products_quantity) as Qty, sum(orders_products.final_price) as Sales from orders_products, orders where orders_products.orders_id = orders.orders_id and orders.orders_status <> 99 group by products_model ORDER BY `Qty` DESC