In one of the column i am getting 2 values with a delimiter between it How to extract both the values
I have some thing like this Column TRN02 is
TRN02
You can use SUBSTRING to do this:
SUBSTRING
SELECT SUBSTRING(TRN02, 0, CHARINDEX('-', TRN02)) AS [First] SUBSTRING(TRN02, CHARINDEX('-', TRN02) + 1, LEN(TRN02)) AS [Second] FROM TABLE