欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

match against

程序员文章站 2022-04-22 09:39:37
...

match against

 

Full-Text 在5.6之前 只能用于 MyISAM ,5.6开始 可用于InnoDB

 

 

id name

1 张三

2 张四

3 张五

4 李三

5 李四

6 李五

1. Boolead Full-text Searches

 

说明:

+ AND

- AND NOT

space or

 

###

select * from table_xxx_user where match(name) against(‘+张 -四 -五’  IN BOOLEAN MODE)

 

结果:

1 张三

 

###

select * from table_xxx_user where match(name) against(‘张 四 五’  IN BOOLEAN MODE)

1 张三

2 张四

3 张五

5 李四

6 李五

 

###

select * from table_xxx_user where match(name) against(‘+张 四’  IN BOOLEAN MODE)

 

结果:

张四排第一个

 

2 张四

1 张三

3 张五

 

 

2. default natural language full-text searches

 

相关标签: mysql match text