hi,
ich bin gerade dabei eine abfrage aus 3 tabellen mittels einer volltextsuche auszugeben.
Leider bekomme ich kein ergebnis
ich gehe stark davon aus das es an meinen INNER JOINS liegt.
ich habe es auch mal ohne die volltextsuche gemacht also mit einem wert für das title feld
Bekomme jedoch dennoch keine Ausgabe -.-
jemand eine Idee?
Also ich weiß das es an den beiden Inner joins liegt.
aber die jeweiligen id's kommen ja in den tabellen vor
also z.b id 1323 kommt in pages und tx_dam vor
1311 in pages und tt_content
ich bin gerade dabei eine abfrage aus 3 tabellen mittels einer volltextsuche auszugeben.
Leider bekomme ich kein ergebnis
ich gehe stark davon aus das es an meinen INNER JOINS liegt.
Code:
SELECT tt_content.pid, pages.title, convert( tt_content.tx_contentcategory_categories
USING latin1 ) AS `cate` , tt_content.tx_contentcategory_categories, tt_content.media, tt_content.bodytext,
tx_dam.title FROM tt_content
INNER JOIN pages ON tt_content.pid = pages.uid INNER JOIN tx_dam ON pages.uid=tx_dam.pid
WHERE convert( tt_content.tx_contentcategory_categories
USING latin1 ) >0
AND MATCH (
pages.title, tt_content.bodytext,pages.keywords,tt_content.media,tt_content.tx_templavoila_flex,tx_dam.title
)
AGAINST ("+Penguins*" IN BOOLEAN MODE)
AND ((
(tt_content.bodytext IS NOT NULL OR convert(
tt_content.tx_contentcategory_categories
USING latin1 ) =1)
OR tt_content.tx_contentcategory_categories = 20)
AND
(pages.deleted < 1))
OR (tx_dam.title IS NOT NULL) ORDER BY convert(tt_content.tx_contentcategory_categories
USING latin1 ) ASC LIMIT 0,1000
Code:
SELECT tt_content.pid, pages.title, convert( tt_content.tx_contentcategory_categories
USING latin1 ) AS `cate` , tt_content.tx_contentcategory_categories, tt_content.media, tt_content.bodytext,
tx_dam.title FROM tt_content
INNER JOIN pages ON tt_content.pid = pages.uid INNER JOIN tx_dam ON pages.uid=tx_dam.pid
WHERE tx_dam.title="Penguins"
jemand eine Idee?
Also ich weiß das es an den beiden Inner joins liegt.
aber die jeweiligen id's kommen ja in den tabellen vor
also z.b id 1323 kommt in pages und tx_dam vor
1311 in pages und tt_content
Zuletzt bearbeitet: