Hi,
I have the following table
CREATE TABLE `fulltext_sampl e` (
`copy` text,
FULLTEXT KEY `copy` (`copy`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
INSERT INTO `fulltext_sampl e` VALUES ('This is a test to see how mysql
works');
Now I do a search for
SELECT * FROM fulltext_sample WHERE MATCH(copy) AGAINST('mysql' );
and it return 0 results. Can someone please help me with this?
Thanks
Maz.
I have the following table
CREATE TABLE `fulltext_sampl e` (
`copy` text,
FULLTEXT KEY `copy` (`copy`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
INSERT INTO `fulltext_sampl e` VALUES ('This is a test to see how mysql
works');
Now I do a search for
SELECT * FROM fulltext_sample WHERE MATCH(copy) AGAINST('mysql' );
and it return 0 results. Can someone please help me with this?
Thanks
Maz.
Comment