您好,登錄后才能下訂單哦!
問題-: mysql如何進行以,分割的字符串的拆分
分割開逗號 分號的字段。其他字段自動補齊。
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 );
實現出來的效果。 :
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。