Forum Moderators: coopster

Message Too Old, No Replies

MySQL Fulltext Search

         

rfontaine

12:55 pm on Aug 10, 2005 (gmt 0)

10+ Year Member



Hi,

I am thinking of adding mysql full text search to our website. The documentation says it works on the "text" datatype. Do they mean it will also work on the other text types such as "medium text"?

Thank you in advance

jatar_k

4:52 pm on Aug 10, 2005 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



[dev.mysql.com...]

A full-text index in MySQL is 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.

rfontaine

8:15 pm on Aug 10, 2005 (gmt 0)

10+ Year Member



Yes, I saw that documentation. However, it does not specifically state that "mediumtext" columns will work (it just says "text" columns) with a fulltext search - which was my question.

After testing, which I was trying to avoid having to do, it seems medium text columns do indeed work.