mysql全文搜索中文应用
今天要介绍的就是mysql全文搜索的应用,全文检索的表的存储引擎类型必须为MyISAM,否则不能做全文搜索哦。
首先用下面表举例:
代码如下 | 复制代码 |
|
MySQL使用Match()和Against()执行全文搜索,举例如下:
代码如下 | 复制代码 |
SELECT body FROM articles WHERE Match(body) Against('www.phpddt.com'); |
如上Match是正对指定的列进行搜索,Against('www.phpddt.com')是正对指定词进行搜索
另外:
使用查询扩展WITH QUERY EXPANSION,将会搜索出更多结果(mysql会将匹配的行中有用的词再次进行搜索,这样搜索出来的结果更多,但可能不是你想要的);
使用布尔文本搜索IN BOOLEAN MODE,类似我们平时使用搜索引擎时用到的的语法:逻辑与、逻辑或、逻辑非等.支持的布尔操作符如下:
全文布尔操作符:
--------------------------------------------------------------------------------------------------------------
|操作符 | 说明 |
--------------------------------------------------------------------------------------------------------------
| + |包含,词必须存在
| - |排除,词必须不出现
| > |包含,而且增加等级值
|
| () |把词组成子表达式(允许这些子表达式作为一个组被包含,排除,排列等)
| ~ |取消一个词的排序值
| * |词尾的通配符
| " " |定义一个短语(与单个词的列表不一样,它匹配整个短语以便包含或排除这个短语)
----------------------------------------------------------------------------------------------------------------
使用方法如下:
代码如下 | 复制代码 |
SELECT * FROM articles WHERE MATCH (title,body) AGAINST ('+apple -banana' IN BOOLEAN MODE); |
+ 表示AND,即必须包含。- 表示NOT,即不包含。
代码如下 | 复制代码 |
SELECT * FROM articles WHERE MATCH (title,body) AGAINST ('apple banana' IN BOOLEAN MODE); |
apple和banana之间是空格,空格表示OR,即至少包含apple、banana中的一个。
代码如下 | 复制代码 |
SELECT * FROM articles WHERE MATCH (title,body) AGAINST ('+apple banana' IN BOOLEAN MODE); |
必须包含apple,但是如果同时也包含banana则会获得更高的权重。
代码如下 | 复制代码 |
SELECT * FROM articles WHERE MATCH (title,body) AGAINST ('+apple ~banana' IN BOOLEAN MODE); |
~ 是我们熟悉的异或运算符。返回的记录必须包含apple,但是如果同时也包含banana会降低权重。但是它没有 +apple -banana 严格,因为后者如果包含banana压根就不返回。
代码如下 | 复制代码 |
SELECT * FROM articles WHERE MATCH (title,body) AGAINST ('+apple +(>banana |
返回同时包含apple和banana或者同时包含apple和orange的记录。但是同时包含apple和banana的记录的权重高于同时包含apple和orange的记录。
linux中mysql中文全文搜索 .
代码如下 | 复制代码 |
centos6 # /opt/lampp/bin/mysql -uroot -ppassword mysql> SHOW VARIABLES LIKE 'plugin_dir'; # wget http://mysqlcft.googlecode.com/files/mysqlcft-1.0.0-x86_64-bin.tar.gz # /opt/lampp/bin/mysql -uroot -ppassword
SELECT * FROM articles WHERE MATCH(title,body) AGAINST ('北京' IN BOOLEAN MODE |

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use PHP extension Sphinx for full-text search Full-text search is one of the common requirements in modern web applications. In order to satisfy users' efficient query and retrieval of data, we can use Sphinx, a powerful open source search engine, to implement the full-text search function. Sphinx is written in C++ and provides PHP extensions to facilitate our use in PHP projects. This article will introduce how to use the PHP extension Sphinx for full-text search

In modern web application development, full-text search functionality has become an essential part. As a language widely used to develop web applications, PHP naturally provides some powerful libraries to support full-text search. In this article, we will delve into how to use PHP to implement full-text search functionality, and provide some tips to make your information search easier. 1. What is full-text search? Full-text search refers to the ability to retrieve a keyword or phrase within a document. Traditional search engines usually simply

How to use PHP and SQLite for full-text search and indexing strategies Introduction: In modern application development, full-text search capabilities are indispensable in many fields. Whether on blogs, news websites, or e-commerce platforms, users are accustomed to using keywords to search. Therefore, to improve user experience and provide better search results, we need to provide full-text search capabilities using appropriate search and indexing strategies. In this article, we will explore how to use PHP and SQLite databases to implement full-text search and

How to use MongoDB to implement the full-text search function of data Introduction: With the rapid development of the information age, the full-text search function has become a necessary function for many applications. As a popular NoSQL database, MongoDB also provides powerful full-text search capabilities. This article will introduce how to use MongoDB to implement the full-text search function of data and provide relevant code examples. 1. Introduction to MongoDB full-text search function MongoDB’s full-text search function is based on MongoDB’s text search function.

With the continuous development of the information age, people increasingly rely on the Internet to obtain information. As one of the platforms for information sharing, web search engines are also constantly evolving and improving. This article will introduce how to implement a full-text search engine in PHP7.0, helping readers make better use of PHP technology and quickly build an efficient search engine. 1. Overview of full-text search engines Full-text search uses keywords or phrases to search throughout the document to find the most matching results. Full-text search engines use algorithms to index documents to speed up searches. exist

How to quickly implement full-text search with PHP and Elasticsearch Full-text search is becoming more and more important in modern applications, helping users quickly find the information they need. Elasticsearch is a powerful open source search engine that provides fast and efficient full-text search capabilities. Combining the power of PHP with the flexibility of Elasticsearch, we can easily implement full-text search functionality. This article will show you how to use PHP and Elasticse

How to use PHP to implement full-text search and keyword extraction functions Full-text search and keyword extraction are common functions in modern websites and applications, which can provide users with a better search experience and relevant recommendations. In PHP, we can use full-text indexing and keyword extraction technology to achieve these functions. This article will introduce how to use PHP to implement full-text search and keyword extraction functions, and provide corresponding code examples. Implementation of full-text search function Full-text search refers to searching for records containing specified keywords in text content. exist

Solr is a Lucene-based search engine that can be used to implement full-text search. Using Solr in PHP for full-text search can help us quickly query relevant data through keywords and improve the accuracy and reliability of search results. This article will introduce how to use Solr in PHP for full-text search. 1. Installation and configuration of Solr First, we need to install Solr and the Solr extension of PHP on the server. For Solr installation steps, please refer to Solr’s official documentation.
