当前位置:网站首页> mysql拆分字符串作为查询条件的示例代码
mysql拆分字符串作为查询条件的示例代码
2022-07-06 15:36:00 【1024问】
mysql.help_topic
REPLACE
LENGHT
substring_index
分析
有个群友问一个问题
这表的ancestors列存放的是所有的祖先节点,以,
分隔
例如我查询dept_id为103的所有祖先节点,现在我只有一个dept_id该怎么查
然后我去网上找到这样一个神奇的sql,改改表名就成了下面的这样
SELECTsubstring_index( substring_index( a.ancestors, ',', b.help_topic_id + 1 ), ',',- 1 ) AS shareholder FROMsys_dept aJOIN mysql.help_topic b ON b.help_topic_id < ( length( a.ancestors ) - length( REPLACE ( a.ancestors, ',', '' ) ) + 1 ) WHEREdept_id = 103
嗯,没错结果出来了,然后我就很好奇,什么原理,一个个来看
mysql.help_topic这个是一个mysql自带的帮助解释注释表,查询结果如下
id从0开始,我这个版本最大id到584,版本不同应该id最大值也不一样,这个表的作用一会说
REPLACE这个函数应该都知道吧,替换字符用的
LENGHT获取字符串的长度
substring_index查分字符串,三个参数,要拆分的字符串,根据拆分的字符,从第几个开始
如果最后的那个参数为正数则从左开始数,然后获取对应下标左边的所有字符
如果为负数,则从右边开始数,获取对应下标右边的所有字符串,这个就不演示了
分析先来看第一段
( length( a.ancestors ) - length( REPLACE ( a.ancestors, ',', '' ) ) + 1 )
我们假设当前数据的ancestors值为 0,100,101
那么第一个length(a.ancestors)
的值就是9 减去后面的一段
length( REPLACE ( a.ancestors, ',', '' ) )
因为我们假设的值里面有两个 ,
所以length为7 最后在加1 那么这段值为 3
和前面的 join on条件能查出的数据也就是mysql.help_topic
这个表中所有id小于3的数据,也就是id为0,1,2的三条数据
那么现在先来看看这样查询的结果是啥
那么我们假设现在是第一行,mysql.help_topic
表中的help_topic_id
为0
substring_index( substring_index( a.ancestors, ',', b.help_topic_id + 1 ), ',',- 1 )
最里面的substring_index 拆分后为0,因为没有能在拆分的了所以外面的substring_index返回的也是0
第二行help_topic_id
为1的时候获取结果为0,100
然后执行外层的substring_index 根据,
拆分,值为-1 所以从右边找一位,获取的值就是100
第三行结果为0,100,101
,外层substring_index 执行后结果为101
....只能心中大喊牛逼
那么现在知道mysql.help_topic
这个表的作用了吗?就是用来对拆分出的数据分行,专业点叫笛卡尔积
(真的不懂..)
这种方法也有缺点:就是拆出的行数不能大于mysql.help_topic
这个表的数据条数
到此这篇关于mysql拆分字符串作为查询条件的示例代码的文章就介绍到这了,更多相关mysql拆分字符串查询内容请搜索软件开发网以前的文章或继续浏览下面的相关文章希望大家以后多多支持软件开发网!
边栏推荐
- OpenNMS separation database
- How big is the empty structure?
- pytorch_ Yolox pruning [with code]
- Designed for decision tree, the National University of Singapore and Tsinghua University jointly proposed a fast and safe federal learning system
- MySQL authentication bypass vulnerability (cve-2012-2122)
- Return keyword
- 剑指offer刷题记录1
- Improving Multimodal Accuracy Through Modality Pre-training and Attention
- Clip +json parsing converts the sound in the video into text
- UVa 11732 – strcmp() Anyone?
猜你喜欢
Financial professionals must read book series 6: equity investment (based on the outline and framework of the CFA exam)
Aardio - construct a multi button component with customplus library +plus
关于声子和热输运计算中BORN电荷和non-analytic修正的问题
leetcode:面试题 17.24. 子矩阵最大累加和(待研究)
#DAYU200体验官# 首页aito视频&Canvas绘制仪表盘(ets)
Method of canceling automatic watermarking of uploaded pictures by CSDN
Sword finger offer question brushing record 1
Cocoscreator+typescripts write an object pool by themselves
Rust knowledge mind map XMIND
Leetcode: interview question 17.24 Maximum cumulative sum of submatrix (to be studied)
随机推荐
关于声子和热输运计算中BORN电荷和non-analytic修正的问题
The statement that allows full table scanning does not seem to take effect set odps sql. allow. fullscan=true; I
Gd32f4xx serial port receive interrupt and idle interrupt configuration
案例推荐丨安擎携手伙伴,保障“智慧法院”更加高效
Enterprises do not want to replace the old system that has been used for ten years
机试刷题1
面试题:AOF重写机制,redis面试必问!!!
Void keyword
ICLR 2022 | 基于对抗自注意力机制的预训练语言模型
企业不想换掉用了十年的老系统
OpenNMS separation database
NPM cannot install sharp
poj 1094 Sorting It All Out (拓扑排序)
DR-Net: dual-rotation network with feature map enhancement for medical image segmentation
rust知识思维导图xmind
MySQL ---- first acquaintance with MySQL
Slide the uniapp to a certain height and fix an element to the top effect demo (organize)
Improving Multimodal Accuracy Through Modality Pre-training and Attention
UDP programming
The difference between enumeration and define macro