2012-02-21 81 views
0

我有一個varchar變量像這樣定義。在SQL Server 2005中分離變量值

declare @IDs varchar(50) 
set @IDs ='111,123,567,' 

現在我需要提取列表中的最後的值總是567.

@IDs的值可以是這樣也

set @IDs ='56,' 

在這種情況下,我們需要只提取值

我們該怎麼做?任何對此的幫助都會很大。

感謝

庫馬爾

+0

東西已經被問: http://stackoverflow.com/questions/314824/t-sql-opposite-to-string-concatenation-how-to-split-string-into-multiple- RECO – 2012-02-21 06:44:07

回答