Error
SQL-query:
CREATE TABLE quotes (
id int(9) NOT NULL auto_increment,
author varchar(255),
content text,
PRIMARY KEY (id),
UNIQUE KEY id (id),
FULLTEXT KEY author (author,content)
) TYPE=MyISAM;
MySQL said: You have an error in your SQL syntax near 'KEY author
(author,content) ) TYPE=MyISAM;' at line 7
I have also tried to create the table and ALTER TABLE quotes ADD
FULLTEXT author (author,contect)
I get the same error, is this a function at is only in 3.23 Max or is
it in the standard version as well?
R/Doug
---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)
To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php