參考網址
https://stackoverflow.com/questions/13384645/how-to-split-a-multi-line-string-into-columns-in-tsql
實際做法
select SUBSTRING('ABC_ALONSO',1,CHARINDEX('_','ABC_ALONSO')-1) '前面的ABC'
, SUBSTRING('ABC_ALONSO',CHARINDEX('_','ABC_ALONSO')+1,len('ABC_ALONSO')) '後面的阿隆索'
以上文章僅用紀錄資料使用.....