Viewing 4 posts - 1 through 5 (of 5 total)
Thank You - you are all awesome
March 6, 2025 at 7:25 am
Ive also tried
SELECT top 1000 [cp_initialreviewId]
,[cp_AssessmentChannelOptions]
,(SELECT [ChannelName]
FROM OPENJSON(cp_AssessmentChannelOptions)
WITH (ChannelName NVARCHAR(50) '$.ChannelName'))
,(SELECT [Removed]
FROM OPENJSON(cp_AssessmentChannelOptions)
WITH (Removed BIT '$.Removed'))
FROM [PIP_MSCRM_MI_DB].[dbo].[cp_initialreviewBase]
But I get the error
Subquery returned more than 1 value. This is not permitted...
March 5, 2025 at 5:42 pm
That is truly fantastic and going to save me so many headaches,
one last question I promise, can I turn this into a function where I pass it the field from...
March 5, 2025 at 5:17 pm
Hi, thanks for replying. its 50% of the way there. splits out my uniqueidentifier perfectly.
I however, also need the false or true part that relates to each identifier, so in...
March 5, 2025 at 4:43 pm
Viewing 4 posts - 1 through 5 (of 5 total)