Hi,
I have a column(Service) in SQl table that is seperated by Semicolons ,one more column(Code) and is seperated by semicolons.I need to match both the columns data ending by semicolon .
SQl table
ID Date Service Code
5367 09/02/2013 DataProcessing;OnlineInfoServices 514;9082
8909 09/08/2013 DataMart; Engineering Services 9087;6892
I want the output in the below format
ID Date Service Code
5367 09/02/2013 DataProcessing 514
5367 09/02/2013 OnlineInfoServices 9082
8909 09/08/2013 DataMart 9087
8909 09/08/2013 Engineering Services 6892
Anita