The used table type doesn't support FULLTEXT indexes
I use MySQL5.0.24. When I create a table follow statements occurs an error 1214:The used table type doesn't support FULLTEXT indexes.
How to resolve this problem?
CREATE TABLE articles (
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
title VARCHAR(200),
body TEXT,
FULLTEXT (title,body)
);
Thanks,
Subject
Views
Written By
Posted
The used table type doesn't support FULLTEXT indexes
26329
January 31, 2008 10:11PM
22270
February 03, 2008 03:34PM
11313
April 30, 2008 05:29AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.