先查詢mysql的版本,如果mysql版本在5.7及以上版本可以使用json格式
select version()
如果 t1表里有一個extra字段,字段是text類型,數據為json格式 {"value":"XMjgxIqqqqqqqqqq"}
通過jSON_EXTRACT可以獲取json里面value對於的值
JSON_EXTRACT(t1.extra,'$.value')
得到 "XMjgxIqqqqqqqqqq"
如果想去除兩側引號,需要先做類型轉換再做trim
trim(both '"' from cast(JSON_EXTRACT(t1.extra,'$.value') as char))
得到 XMjgxIqqqqqqqqqq
原始sql和原始結果
select t1.id AS item_id, t1.title AS item_name,t6.id AS topic_id, t6.title AS topic_name, t1.extra AS media_id, t1.biz_type from tem t1 join component_item t2 on t1.id = t2.item_id join component t3 on t2.component_id = t3.id join drawer t4 on t4.id = t3.drawer_id join channel_drawer t5 on t5.drawer_id = t4.id join channel t6 on t6.id = t5.channel_id where t1.biz_type in ("JUMP_TO_SHOW","JUMP_TO_VIDEO") and t1.extra IS NOT NULL and t6.topic_property IS NOT NULL
優化后的sql
select t1.id AS item_id, t1.title AS item_name,t6.id AS topic_id, t6.title AS topic_name, trim(both '"' from cast(JSON_EXTRACT(t1.extra,'$.value') as char)) AS media_id, trim(LEADING 'JUMP_TO_' from t1.biz_type) AS biz_type from item_pre t1 join component_item_pre t2 on t1.id = t2.item_id join component_pre t3 on t2.component_id = t3.id join drawer_pre t4 on t4.id = t3.drawer_id join channel_drawer_pre t5 on t5.drawer_id = t4.id join channel_pre t6 on t6.id = t5.channel_id where t1.biz_type in ("JUMP_TO_SHOW","JUMP_TO_VIDEO") and t1.extra IS NOT NULL and t6.topic_property IS NOT NULL and JSON_EXTRACT(t6.topic_property,'$.group')= "電影"