微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Mysql入门mysql 列转行的技巧(分享)

MysqL入门MysqL 列转行的技巧(分享)》要点:
本文介绍了MysqL入门MysqL 列转行的技巧(分享),希望对您有用。如果有疑问,可以联系我们。

前言:MysqL数据库

由于很多业务表因为历史原因或者性能原因,都使用了违反第一范式的设计模式.即同一个列中存储了多个属性值(具体结构见下表).MysqL数据库

这种模式下,应用常常需要将这个列依据分隔符进行分割,并得到列转行的结果.MysqL数据库

表数据:MysqL数据库

期望得到结果:MysqL数据库

ID Value
1 tiny
1 small
1 big
2 small
2 medium
3 tiny
3 big

正文:
MysqL数据库

#需要处理的表
create table tbl_name (ID int,mSize varchar(100));
insert into tbl_name values (1,'tiny,small,big');
insert into tbl_name values (2,'small,medium');
insert into tbl_name values (3,big');
#用于循环的自增表
create table incre_table (AutoIncreID int);
insert into incre_table values (1);
insert into incre_table values (2);
insert into incre_table values (3);
select a.ID,substring_index(substring_index(a.mSize,',b.AutoIncreID),-1) 
from 
tbl_name a
join
incre_table b
on b.AutoIncreID <= (length(a.mSize) - length(replace(a.mSize,''))+1)
order by a.ID;

原理分析:MysqL数据库

这个join最基本原理是笛卡尔积.通过这个方式来实现循环.MysqL数据库

以下是具体问题分析:MysqL数据库

length(a.Size) - length(replace(a.mSize,''))+1  表示了,按照逗号分割后,改列拥有的数值数量,下面简称nMysqL数据库

join过程的伪代码MysqL数据库

根据ID进行循环MysqL数据库

{MysqL数据库

判断:i 是否 <= nMysqL数据库

{MysqL数据库

获取最靠近第 i 个逗号之前的数据,即 substring_index(substring_index(a.mSize,b.ID),-1)MysqL数据库

i = i +1MysqL数据库

}MysqL数据库

ID = ID +1MysqL数据库

}MysqL数据库

总结:MysqL数据库

这种方法的缺点在于,我们需要一个拥有连续数列的独立表(这里是incre_table).并且连续数列的最大值一定要大于符合分割的值的个数.MysqL数据库

例如有一行的mSize 有100个逗号分割的值,那么我们的incre_table 就需要有至少100个连续行.MysqL数据库

当然,MysqL内部也有现成的连续数列表可用.如MysqL.help_topic: help_topic_id 共有504个数值,一般能满足于大部分需求了.MysqL数据库

改写后如下:MysqL数据库

select a.ID,b.help_topic_id+1),-1) 
from 
tbl_name a
join
MysqL.help_topic b
on b.help_topic_id < (length(a.mSize) - length(replace(a.mSize,''))+1)
order by a.ID;

以上这篇MysqL 列转行的技巧(分享)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家PHP.MysqL数据库

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐