Simplifying mysql fulltext search -
To search text for
wordB
and
wordpr < Code> WordC
I'm doing it this way:
SELECT * from mytable WHERE MATCH (field 1) (in 'word A' boolean mode) or match Field 1) against (
Just worked and it will also work
SELECT * against mytable WHERE MATCH (field1) ('WordA / wordB / wordC' in Boolean mode)
Comments
Post a Comment