0120-33-9096
03-5717-5033 (携帯電話用)
【電話受付時間】
平日 9:00-11:45、13:00-17:00
MySQL の新しいリリース、技術情報、イベントなどの情報が記載されています。
毎月発行される MySQL ニュースレターを購読しませんか?
Newsletters older than 6 months may have links that are out of date. Please use the Search to check for updated links.
I need to store documents into database and I need to be able to provide full text searches to those documents. Can I do that with MySQL?
Yes, you can do that. As of Version 3.23.23, MySQL has support for full-text indexing and searching. Full-text indexes in MySQL are an index of type FULLTEXT. FULLTEXT indexes are used with MyISAM tables only and can be created from CHAR, VARCHAR, or TEXT columns at CREATE TABLE time or added later with ALTER TABLE or CREATE INDEX.
You can read more about the MySQL Full Text Search from http://www.mysql.com/doc/en/Fulltext_Search.html

