mysql
北 执、�
这个作者很懒,什么都没留下…
展开
-
mysql一行转多行
1.使用到数据库自带的mysql.help_topic表来属性拆分,help_topic表就是实现行转列功能 SELECT SUBSTRING_INDEX(SUBSTRING_INDEX(a.path,’,’,b.help_topic_id + 1),’,’,-1) as path,a.name FROM (select type as path , name from aaa) a JOIN mysql.help_topic b ON b.help_topic_id < (LENGTH(a.pat原创 2021-12-01 18:17:50 · 762 阅读 · 0 评论 -
MySQL的left和right
left(str,len); 解释: 返回从左边开始len长度str个字符 两个参数任意一个为null则放回null right(str,len); 解释: 返回从左边开始len长度str个字符 两个参数任意一个为null则放回null 列句: select left(‘xiaohu’,4); #xiao select left(null,4); #...原创 2019-07-09 11:37:37 · 754 阅读 · 0 评论