We created a table using following query:
CREATE TABLE TEST(
ID INT UNSIGNED NOT NULL PRIMARY KEY,
NAME VARCHAR(50),
DESCRIPTION TEXT,
FULLTEXT(NAME));
when I run
SELECT * FROM TEST WHERE MATCH(NAME) AGAINST ('APPLE');
I get no results... any suggestions...
(the name field is populated with the word 'apple')
Thanks
CREATE TABLE TEST(
ID INT UNSIGNED NOT NULL PRIMARY KEY,
NAME VARCHAR(50),
DESCRIPTION TEXT,
FULLTEXT(NAME));
when I run
SELECT * FROM TEST WHERE MATCH(NAME) AGAINST ('APPLE');
I get no results... any suggestions...
(the name field is populated with the word 'apple')
Thanks