首页 > 作文

MySql模糊查询json关键字检索方案示例

更新时间:2023-04-03 23:36:38 阅读: 评论:0

目录
前言方案一:方案二:方案三:方案四(最终采用方案):总结

前言

​最近在项目中遇到这样一个需求:需要在数据表中检索包含指定内容的结果集,该字段的数据类型为text,存储的内容是json格式,具体表结构如下:

create table `product领导的意思` (`id` int(11) unsigned not null auto_increment comment 'id',`name` varchar(100) not null default '' comment '产品名称' collate 'utf8mb4_general_ci',`price` decimal(10,2) unsigned not null default '0.00' comment '产品价格',`suit` text not null comment '适用门店 json格式保存门店id' collate 'utf8mb4_general_ci',`status` tinyint(3) not null default '0' comment '状态 1-正常 0-删除 2-下架',`create_date` datetime not null default current_timestamp comment '发布时间',`update_date` datetime not null default current_timestamp on update current高考优秀作文素材_timestamp comment '修改时间',primary key (`id`) using btree)comment='产品表'collate='utf8mb4_general_ci'engine=innodbauto_increment=1;

表数据如下:

现需求:查找 sui毕业类别怎么填t->hotel 中包含10001的数据。

通过谷歌百度查找,大致找到以下几种方案:

方案一:

lect * from product where suit like '%"10001"%';#like方式不能使用索引,性能不佳,且准确性不足

方案二:

lect * from product where suit locate('"10001"', 'suit') > 0;# locate方式和like存在相同问题

方案三:

s排行手机elect * from product where suit != '' and json_contains('suit'->'$.hotel', '"10001"');#以mysql内置json函数查找,需要mysql5.7口语训练以上版本才能支持,准确性较高,不能使用全文索引

方案四(最终采用方案):

lect * from product where match(suit) against('+"10001"' in boolean mode);#可使用全文索引,mysql关键字默认限制最少4个字符,可在mysql.ini中修改 ft_min_word_len=2,重启后生效

match() against()更多使用方法可查看mysql参考手册:

https://dev.mysql.com/doc/refman/5.6/ja/fulltext-boolean.html

总结

到此这篇关于mysql模糊查询json关键字检索方案示例的文章就介绍到这了,更多相关mysql json关键字检索内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

本文发布于:2023-04-03 23:36:34,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/43c3eb6a388b4c2937b408a66ef06a5c.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:MySql模糊查询json关键字检索方案示例.doc

本文 PDF 下载地址:MySql模糊查询json关键字检索方案示例.pdf

标签:方案   索引   关键字   内容
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图