>  기사  >  데이터 베이스  >  Mysql 全文本检索

Mysql 全文本检索

WBOY
WBOY원래의
2016-06-07 15:19:331130검색

mysql 全文索引 注意 并非所有的引擎都支持 全文检索 mysql最常用的引擎 INnodb 和 myisam 后者支持全文检索 前者不支持 创建表的时候指定要检索列 CREATE TABLE TEST_FULLTEXT(note_id int not null auto_increment,note_text text null ,primaty key (note_

mysql 全文索引

注意 并非所有的引擎都支持 全文检索

mysql最常用的引擎 INnodb 和 myisam 后者支持全文检索 前者不支持

创建表的时候指定要检索列

<code><span><span>CREATE</span> <span>TABLE</span> TEST_FULLTEXT(note_id <span>int</span> <span>not</span> <span>null</span> auto_increment,note_text text <span>null</span>,
primaty <span>key</span>(note_id),FULLTEXT(note_text)
)engine=myisam;</span>
</code>

fulltext 索引某个列 fulltext(note_text) ,在某note_text列上建立全文索引

插入数据

然后用 match()指定列 Against()指定词
如 语句

<code><span><span>select</span> *
<span>from</span> TEST_FULLTEXT
<span>where</span> <span>Match</span>(note_text) Against(<span>'hello'</span>);</span>
</code>

查找note_txt列中含有 hello词的行 返回的结果为 两行

<code>note_text
'hello' was said by quester 
quster say 'hello' to pp and he try again
</code>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.