i am trying to extract a substring(everything before a hyphen, in this case) from a string as shown below:
Net Operating Loss - 2007 Capital Loss - 1991 Foreign Tax Credit - 1997
and want the year and name(substring before hyphen) separately, using SQL server Management studio 2008. Any advice? or idea how i can achieve this?
DECLARE @test nvarchar(100) SET @test = 'Foreign Tax Credit - 1997' SELECT @test, left(@test, charindex('-', @test) - 2) AS LeftString, right(@test, len(@test) - charindex('-', @test) - 1) AS RightString
2.1m questions
2.1m answers
60 comments
57.0k users