Stefany93 Posted November 20, 2013 Share Posted November 20, 2013 Guys, I am going crazy. Please help. I am trying to make a FULLTEXT clause match 'acura integra radiator' but that sentence must be present in the fetched rows. Because now the mysql fetches everything that has either the words 'acura', 'íntegra' or 'radiator' Basically I am trying to create a tag cloud. I am not using the LIKE clause because it does not accept variables. Thank you. Quote Link to comment Share on other sites More sharing options...
Solution Barand Posted November 20, 2013 Solution Share Posted November 20, 2013 (edited) Put the phrase inside double quotes and use BOOLEAN MODE SELECT * FROM tablename WHERE MATCH (textfield) AGAINST ('"acura integra radiator"' IN BOOLEAN MODE); http://dev.mysql.com/doc/refman/5.5/en/fulltext-boolean.html Edited November 20, 2013 by Barand Quote Link to comment Share on other sites More sharing options...
Stefany93 Posted November 21, 2013 Author Share Posted November 21, 2013 Thanks man, worked like charm. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.