MySQL full text search, why am I getting Incorrect arguments to MATCH
Posted
by vick
on Stack Overflow
See other posts from Stack Overflow
or by vick
Published on 2010-04-09T20:47:52Z
Indexed on
2010/04/09
20:53 UTC
Read the original article
Hit count: 188
web-development
SELECT * FROM company c INNER JOIN city ci ON ci.city_id = c.city_id INNER JOIN state s ON s.state_id = c.state_id WHERE MATCH ( c.name, ci.name, c.zipcode, s.name ) AGAINST ( 'los angeles' )
© Stack Overflow or respective owner