Hi,
ich möchte in php ein Suche Programmieren. Soweit ok, aber bei der SQL abfrage scheitere ich noch etwas....
Wo liegt hier der Fehler?
Ich kann ihn wirklich nicht finden, suche schon bestimmt 1 std danach, und google half mir auch nicht weiter!
Ich teste "leider" local von daher gibst auch keinen Link. Meine MySQL version ist: 5.0.21-community-nt
Folgenden Fehler bekomme ich wenn ich den code in PhpMyAdmin ausführen will:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE tbl_content . content LIKE '%Battlefield%' OR tbl_downloads . titel LIK' at line 1
Ich danke schonmal im vorraus für die Antwort
Gruß rob1011
ich möchte in php ein Suche Programmieren. Soweit ok, aber bei der SQL abfrage scheitere ich noch etwas....
Code:
SELECT tbl_content.content, tbl_downloads.titel, tbl_downloads.text FROM `nox1_content` AS tbl_content, `nox1_downloads` AS tbl_downloads, WHERE tbl_content.content LIKE '%suchbegriff%' OR tbl_downloads.titel LIKE '%suchbegriff%' OR tbl_downloads.text LIKE '%suchbegriff%'
Ich kann ihn wirklich nicht finden, suche schon bestimmt 1 std danach, und google half mir auch nicht weiter!
Ich teste "leider" local von daher gibst auch keinen Link. Meine MySQL version ist: 5.0.21-community-nt
Folgenden Fehler bekomme ich wenn ich den code in PhpMyAdmin ausführen will:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE tbl_content . content LIKE '%Battlefield%' OR tbl_downloads . titel LIK' at line 1
Ich danke schonmal im vorraus für die Antwort
Gruß rob1011
Kommentar