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

Filed under:

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

Related posts about web-development