MySQL Forums
Forum List  »  Full-Text Search

The used table type doesn't support FULLTEXT indexes
Posted by: Tran Khanh Tung
Date: January 31, 2008 10:11PM

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,

Options: ReplyQuote


Subject
Views
Written By
Posted
The used table type doesn't support FULLTEXT indexes
26368
January 31, 2008 10:11PM


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.