Hallo!
SELECT * FROM tabellenname WHERE
MATCH spalte1 AGAINST ('wort')
OR MATCH spalte2 AGAINST ('wort');
Hab grad die Doku nicht da, aber müßte das nicht
SELECT * FROM tabellenname WHERE
MATCH (spalte1, spalte2) AGAINST ('wort');
heißen?
Also die Spaltenliste, die auch beim ADD FULLTEXT angegeben wurde?
Hast Recht, siehe http://de.mysql.com/documentation/mysql/bychapter/manual.de_Reference.html#Fulltext_Search
Grüß
Andreas