Hallo @ all,
kann es sein, dass folgender Code nicht unter MySQL 3 lauffähig ist? Wenn ja, was muss ich ändern und das selbe Resultat zu erhalten?
Unter MySQL 4 läuft diese Abfrage ohne Probleme und liefert mir auch das gewünschte Resultat. Unter MySQL 3 bekomme ich folgenden Fehler:
Ich würde mich rießig freune wenn mir jemand weiter helfen könnte. Schon mal vielen Dank für eure Bemühungen im Vorraus
//Darox
kann es sein, dass folgender Code nicht unter MySQL 3 lauffähig ist? Wenn ja, was muss ich ändern und das selbe Resultat zu erhalten?
SELECT * from comenius_newsletter_articles AS t1 INNER JOIN comenius_newsletter_categories AS t2 INNER JOIN comenius_user as t3 ON t1.category=t2.ID and t1.ID=$ID and t1.UID=t3.ID
SQL-Befehl :
SELECT *
FROM comenius_newsletter_articles AS t1
INNER JOIN comenius_newsletter_categories AS t2
INNER JOIN comenius_user AS t3 ON t1.category = t2.ID AND t1.ID = 1 AND t1.UID = t3.ID
LIMIT 0 , 30
MySQL meldet:
#1064 - You have an error in your SQL syntax near 'INNER JOIN comenius_user AS t3 ON t1.category = t2.ID AND t1.ID = 1 AND t1.UID ' at line 4
SELECT *
FROM comenius_newsletter_articles AS t1
INNER JOIN comenius_newsletter_categories AS t2
INNER JOIN comenius_user AS t3 ON t1.category = t2.ID AND t1.ID = 1 AND t1.UID = t3.ID
LIMIT 0 , 30
MySQL meldet:
#1064 - You have an error in your SQL syntax near 'INNER JOIN comenius_user AS t3 ON t1.category = t2.ID AND t1.ID = 1 AND t1.UID ' at line 4
//Darox
Kommentar