MySQL Forums
Forum List  »  Full-Text Search

Re: The used table type doesn't support FULLTEXT indexes
Posted by: Ryan Lowe
Date: February 03, 2008 03:34PM

Only MyISAM tables support fulltext indexes ... try:

CREATE TABLE articles (
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
title VARCHAR(200),
body TEXT,
FULLTEXT (title,body)
) ENGINE=MyISAM;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: The used table type doesn't support FULLTEXT indexes
22308
February 03, 2008 03:34PM


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.