欧美vvv,亚洲第一成人在线,亚洲成人欧美日韩在线观看,日本猛少妇猛色XXXXX猛叫

新聞資訊

    目錄前言

    ?最近在項目中遇到這樣一個需求:需要在數據表中檢索包含指定內容的結果集,該字段的數據類型為textmysql模糊查詢關鍵字,存儲的內容是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=innodb
    auto_increment=1
    ;

    表數據如下:

    現需求:查找 suit->hotel 中包含10001的數據。

    通過谷歌百度查找mysql模糊查詢關鍵字,大致找到以下幾種方案:

    方案一:

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

    方案二:

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

    方案三:

    select * from product where suit != '' and json_contains('suit'->'$.hotel', '"10001"');
    #以mysql內置json函數查找,需要mysql5.7以上版本才能支持,準確性較高,不能使用全文索引

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

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

    match() ()更多使用方法可查看mysql參考手冊:

    總結

    到此這篇關于mysql模糊查詢json關鍵字檢索方案示例的文章就介紹到這了,更多相關mysql json關鍵字檢索內容請搜索以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持!

    句子:經典句子,勵志句子,唯美句子,正能量句子,短句,優秀短句,語錄,人生感悟的句子,傷感的句子,適合各種心情的句子,讓對方看到心疼的句子

網站首頁   |    關于我們   |    公司新聞   |    產品方案   |    用戶案例   |    售后服務   |    合作伙伴   |    人才招聘   |   

友情鏈接: 餐飲加盟

地址:北京市海淀區    電話:010-     郵箱:@126.com

備案號:冀ICP備2024067069號-3 北京科技有限公司版權所有