时间:2021-07-01 10:21:17 帮助过:2人阅读
SELECT s.* from (
SELECT t.ID,t.time_old,
substring_index( substring_index( t.all_content, ‘;‘, b.help_topic_id + 1 ), ‘;‘, -1 ) content_split
-- t.*
FROM
excel_lvli t
JOIN mysql.help_topic b ON b.help_topic_id < ( LENGTH( t.all_content ) - LENGTH( REPLACE ( t.all_content, ‘;‘, ‘‘ ) ) + 1 )
and t.all_content like ‘%;%‘
and t.all_content like ‘%画了许多%‘
) s
WHERE LENGTH(s.content_split) >0 ;
SELECT
substring_index( substring_index( t.context, ‘,‘, b.help_topic_id + 1 ), ‘,‘, - 1 )
FROM
test.test t
JOIN mysql.help_topic b ON b.help_topic_id < ( LENGTH( t.context ) - LENGTH( REPLACE ( t.context, ‘,‘, ‘‘ ) ) + 1 );
实现出来的效果。 :
mysql分号分割开字段。拆分
标签:tail select sel index and details like _id top