I have a MyISAM MySql table with a full text index, for example:
CREATE TABLE `tblsearch` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `brand` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), FULLTEXT KEY `index_all` (`title`,`brand`) ) ENGINE=MyISAM AUTO_INCREMENT=1316109 DEFAULT CHARSET=utf8;
Now I need to write a query like this to find all the records with the exact name and brand:
SELECT id FROM tblsearch WHERE title=?title AND brand=?brand;
It is important that the query only gives exact matches. I would like to be able to use the full text index that I already have. Is it possible to write a query so that it uses the full text index?
source share