1. 程式人生 > >mysql把一欄位拆分為多行

mysql把一欄位拆分為多行

一:資料庫


二:sql語句

select a.house_no as '房子',substring_index(substring_index(a.name,',',b.help_topic_id+1),',',-1) as '擁有者' 
from  aa a
join   mysql.help_topic b on b.help_topic_id < (length(a.name) - length(replace(a.name,',',''))+1);

三:查詢結果