本文介绍了MySQL FULLTEXT搜索的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Michal获取查询语法,创建全文索引以帮助搜索使用

 创建FULLTEXT索引Test ON Table1(ColumnName1 )

更多


How do you add a column to a fulltext search in MySQL to indicate which words were included in the search?

解决方案

Michal got the query syntax down, to create a full text index to assist this search use

Create FULLTEXT Index Test ON Table1(ColumnName1)

Much more at MySQL Docs

这篇关于MySQL FULLTEXT搜索的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 13:32