首页 > 数据库技术 > 详细

mysql 列转行 并进行json截取(mysql 5.6)

时间:2020-04-03 15:47:44      阅读:404      评论:0      收藏:0      [点我收藏+]

 

如为8.0以上版本,可以直接使用原生的json解析器处理,低版本不支持

 

select
     t1.*
    ,concat(replace(substr(result,instr(result,"url":") +7,instr(result,"})-instr(result,"url":") -7),https://,http://),@1500h)  as temp_image -- json数据截取
from (
    SELECT 
         t.*
        ,concat(substring_index(substring_index(t.image_file,"},{", b.help_topic_id + 1), "},{", -1),"}) as result -- 列转行
    FROM (
        SELECT
             a.id
            ,a.image_file -- json array string
        FROM table_a a
        where length(a.image_file) > 3
        limit 10,1
    ) t
    join (
        select 0 as help_topic_id union all
        select 1 as help_topic_id union all
        select 2 as help_topic_id union all
        select 3 as help_topic_id union all
        select 4 as help_topic_id union all
        select 5 as help_topic_id union all
        select 6 as help_topic_id union all
        select 7 as help_topic_id union all
        select 8 as help_topic_id union all
        select 9 as help_topic_id
    ) b 
        ON b.help_topic_id <  ((LENGTH(t.image_file) - LENGTH(REPLACE(t.image_file, "},{", ‘‘)))/5 + 1)
    order by result
) t1
;

 

mysql 列转行 并进行json截取(mysql 5.6)

原文:https://www.cnblogs.com/chenzechao/p/12625445.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!