SPLIT function will give you two ROWS. If you want two COLUMNS then do as Visakh suggests, or you can use this (no idea which is more efficient)SELECT [COLUMN_1] = substring(YourStrringCol + '-', 0 + 1, charindex('-', YourStrringCol + '-', 0 + 1) - 0 - 1 ), [COLUMN_2] = substring(YourStrringCol + '-', charindex('-', YourStrringCol + '-') + 1, charindex('-', YourStrringCol + '-', charindex('-', YourStrringCol + '-') + 1) - charindex('-', YourStrringCol + '-') - 1 )FROM dbo.MyTable