Hallo Leute,
bin neu hier und hab natürlich mal gleich eine Frage.
Das Problem meiner Aufgabe sehe ich derzeit darin:
"The first multiple-table DELETE syntax is supported starting from MySQL 4.0.0. The second is supported starting from MySQL 4.0.2." laut dev.mysql.com
Da ich aber Version 3.x verwende ist meine Frage wie ich das lösen kann.
Theoretisch glaube ich dass der Code MIT multiple Tables so aussehen sollte:
DELETE FROM products, products_description, products_to_categories wHERE ((`products`.`products_date_added` < '2006-04-06') AND (`products_description`.`products_id` = `products`.`products_id`) AND (`products_to_categories`.`products_id` = `products`.`products_id`))
Weiß ich aber nicht da ich es nicht testen kann. Ich bräuchte diesen Code aber eben für MySql 3.x
Kann mir da wer helfen bitte?
bin neu hier und hab natürlich mal gleich eine Frage.
Das Problem meiner Aufgabe sehe ich derzeit darin:
"The first multiple-table DELETE syntax is supported starting from MySQL 4.0.0. The second is supported starting from MySQL 4.0.2." laut dev.mysql.com
Da ich aber Version 3.x verwende ist meine Frage wie ich das lösen kann.
Theoretisch glaube ich dass der Code MIT multiple Tables so aussehen sollte:
DELETE FROM products, products_description, products_to_categories wHERE ((`products`.`products_date_added` < '2006-04-06') AND (`products_description`.`products_id` = `products`.`products_id`) AND (`products_to_categories`.`products_id` = `products`.`products_id`))
Weiß ich aber nicht da ich es nicht testen kann. Ich bräuchte diesen Code aber eben für MySql 3.x
Kann mir da wer helfen bitte?
Kommentar