mysql實現字符串分割(split)功能

 

數據庫表bim_section_managementpath中存儲的值爲 a.b.c.d 的字符串形式,以 . 分割,實現查詢具體的sql以下:mysql

select
DISTINCT substring_index( substring_index(t1.path,'.',t2.help_topic_id + 1), '.' ,-1 )
from bim_section_management t1 join mysql.help_topic t2 on t2.help_topic_id < (length(t1.path) - length(REPLACE(t1.path,'.','')) + 1 )sql

若是複用只須要替換加粗部分代碼便可。該方法須要明確a,b,c,d字符長度均相同一致纔會分割生效,有必定侷限性。數據庫

相關文章
相關標籤/搜索