Parse data from a table row and output the values formatted
Thank you so very much !John
View ArticleParse data from a table row and output the values formatted
Declare @rept table(Id int Identity(1,1), ReptDesc varchar(max)) Insert into @rept (ReptDesc) Values( 'SomeCategory: Projects; Accounting and Operations; Sales Description: this is a transaction...
View ArticleParse data from a table row and output the values formatted
Thank you, Jingyang. I am getting an error: Msg 13609, Level 16, State 3, Line 3 JSON text is not properly formatted. Unexpected character 'F' is found at position 0. Completion time:...
View ArticleParse data from a table row and output the values formatted
Declare @rept table(Id int Identity(1,1), ReptDesc varchar(max)) Insert into @rept (ReptDesc) Values( 'Category: Projects; Accounting and Operations; Sales Description: this is a transaction report'),...
View ArticleParse data from a table row and output the values formatted
I have a table that has multiple values (and sometimes no values) in the column: ReptDesc. I want to extract those values in the following way: If a value is followed by a colon : that is to be...
View Article