php - phpmyadmin, how to update table,field support full-text search with aql sentence? -
i have database, there has 300,000+ rows in it. want add full-text search function? want update table field myassac.title support full-text search. how control in phpmyadmin sql sentence? thanks.
as long myassac table myisam type table (innodb not support fulltext indexes), it's simple matter of
alter table myassac add fulltext (title);
Comments
Post a Comment