[MySQL] FULL-TEXT Search. 1 Syntx & fulltext-natural-language

Full-text searching is performed using MATCH() ... AGAINST syntax. MATCH() takes a comma-separated list that names the columns to be searched. AGAINST takes a string to search for, and an optional modifier that indicates what type of search to perform.

SELECT name, cost FROM items WHERE Match(name) Against('bady')
SELECT COUNT(*) FROM atricles WHERE Match(title,  body) AGAINST ('database')
SELECT COUNT(IF(MATCH(title, body) AGAINST('database'), 1, NULL)) AS count FROM atricles
mysql> SELECT id, body, MATCH (title,body) AGAINST
    -> ('Security implications of running MySQL as root') AS score
    -> FROM articles WHERE MATCH (title,body) AGAINST
    -> ('Security implications of running MySQL as root');

 

1.  aaa'bbb is regarded as one word, but aaa''bbb is regarded as two words

2. 'aaa'bbb' would be parsed as aaa'bbb.

3. The FULLTEXT parser determines where words start and end by looking for certain delimiter characters; for example,  ” (space), ,” (comma), and .” (period). If words are not separated by delimiters (as in, for example, Chinese), the FULLTEXT parser cannot determine where a word begins or ends. To be able to add words or other indexed terms in such languages to a FULLTEXT index, you must preprocess them so that they are separated by some arbitrary delimiter such as "”.

4. Some words are ignored in full-text searches:

  4.1 Any word that is too short is ignored. At least four characters.

  4.2 Words in the stopword list are ignored. Such as  the” or some”. There is a built-in stopword list, but it can be overwritten by a user-defined list.

  http://dev.mysql.com/doc/refman/5.0/en/fulltext-stopwords.html

5. Designed for large database, for a small database, it might have bizarre result.

 

Read online: http://dev.mysql.com/doc/refman/5.0/en/fulltext-natural-language.html

posted @   Zhentiw  阅读(330)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
点击右上角即可分享
微信分享提示