fawad
www.linkinfo.at
Hallo an Alle!
Es handelt sich um Produkt-Attributen, ich habe nur eins im Admin Bereich verfertigt und in Myql Datenbank sehen Attribute für ein Produkt (products_id = 1) so aus.
Spalte 2 = products_id (1 usw)
Meine Frage, ich habe ca. 7000 Produkte (products_id = 1 bis 1444 da weil, Rest kommen noch)
Wie kann ich mit Hilfe von SQL diese Attributen für alle Produkte erstellen****?
MfG
Es handelt sich um Produkt-Attributen, ich habe nur eins im Admin Bereich verfertigt und in Myql Datenbank sehen Attribute für ein Produkt (products_id = 1) so aus.
Code:
INSERT INTO `products_attributes` (`products_attributes_id`, `products_id`, `options_id`, `options_values_id`, `options_values_price`, `price_prefix`, `attributes_model`, `attributes_stock`, `options_values_weight`, `weight_prefix`, `sortorder`) VALUES
(1, 1, 2, 4, '0.0000', '+', '10004', 1000, '0.0000', '+', 2),
(2, 1, 2, 3, '0.0000', '+', '10003', 1000, '0.0000', '+', 1),
(5, 1, 1, 2, '12.0000', '+', '10002', 1000, '0.0000', '+', 2),
(4, 1, 2, 5, '0.0000', '+', '10005', 1000, '0.0000', '+', 3),
(3, 1, 1, 1, '0.0000', '+', '10001', 1000, '0.0000', '+', 1);
Spalte 2 = products_id (1 usw)
Meine Frage, ich habe ca. 7000 Produkte (products_id = 1 bis 1444 da weil, Rest kommen noch)
Wie kann ich mit Hilfe von SQL diese Attributen für alle Produkte erstellen****?
MfG
Zuletzt bearbeitet: