Hi All,
I have a table with one column lets say Notes of datatype varchar(max)
Notes
ABC:123:XYZ
456789:CDEF:ADEF
CBD:12/12/2000:ZXCV
I want Output should look like below. It should split data at every 2nd colon. I need SQl code for SQL Server 2008 R2
Notes
ABC:123
456789:CDEF
CBD:12/12/2000
Thanks,
RH
sql