How can I get This SQL query to search without MATCH. It returns everything too broad.

Posted by Kirk on Stack Overflow See other posts from Stack Overflow or by Kirk
Published on 2010-05-15T00:14:08Z Indexed on 2010/05/15 0:24 UTC
Read the original article Hit count: 464

Filed under:
$sql = mysql_query("SELECT id, email, url, section, date_modified FROM emails WHERE MATCH(id, email, url, section, date_modified ) AGAINST('$query' IN BOOLEAN MODE) ORDER BY date_modified DESC");

© Stack Overflow or respective owner

Related posts about mysql