admin管理员组文章数量:1345468
I have a stored procedure where I get some column names from the table and take remaining column names dynamically. I get column names with no records if I don't convert it to JSON string but if I convert it to json_string
using JSON AUTO
it returns null instead of all column names with one null record. How to get all column name with one null record here?
ALTER PROCEDURE [dbo].[GetVendorCriticalityInventory]
@CategoryName VARCHAR(120) = null
AS
BEGIN
DECLARE @sql1 Nvarchar(Max);
DECLARE @ques Nvarchar(max);
DECLARE @CommonColumns NVARCHAR(MAX) = '
RID,
RequestID,
[Application/Vendor Name],
[Risk Identified],
[Application/Vendor Type],
[Date of the Request],
[IT Owner],
[Business Owner],
Requestor,
[App/Vendor Criticality],
ISOClause,
Submodule
';
SELECT @ques = STRING_AGG(CAST(QUOTENAME(Question) AS varchar(MAX)),',')
FROM
(select distinct Question
from TPMSMasterData
where TPMSCategoryName = @CategoryName) AS D
--SET @sql1 = '
SET @sql1 = '
WITH LatestData AS
(
select
R.RequestID as RID,
R.RequestIDInfo as RequestID,
isnull(R.NameOftheTool, ''N/A'') as [Application/Vendor Name],
RiskSummaryScore as [Risk Identified],
isnull(convert(varchar(10), R.RequestSubmitted, 120), ''N/A'') as [Date of the Request],
isnull(R.NameOfModule, ''N/A'') as [Application/Vendor Type],
''N/A'' as [IT Owner],
isnull(R.BusinessOwners, ''N/A'') as [Business Owner],
isnull(R.RequestCreatedByEmailID, ''N/A'') as Requestor,
isnull(cast(R.AppCriticalityScore AS varchar), ''N/A'') AS [App/Vendor Criticality],
isnull(A.Question, ''N/A'') as Question,
R.ISOClause,
R.Submodule,
isnull(case
when exists (SELECT 1
FROM STRING_SPLIT(A.DataControlLup, '':'') AS sg
WHERE TRIM(sg.value) = ''LookupTable'' )
then d.lookupDisplayValue
when A.DataControlLup like ''%[A-Za-z]%''
then c.LupDisplayValue
else b.Data1
end,
''N/A'') as Data1 ,
row_number() over (partition by B.RequestID, A.Question order by B.TPMSTransID desc) as rn
from
TPMSMasterData A
join
TPMSTransactionData B on A.TPMSID = b.TPMSID
join
RequestInfo R on B.RequestID = R.RequestID
left join
BusinessLookupTable c on TRY_CAST(b.Data1 as int) = c.BusinessLupID
left join
LookupTable d on try_cast(B.Data1 AS INT) = d.LookupID
where
A.TPMSCategoryName = @CategoryName
and R.WorkFlowCompleted = 1
)
SELECT(
select ' + @CommonColumns + ', ' + @ques + '
from (
SELECT ' + @CommonColumns + ',Question,Data1
FROM LatestData
WHERE rn = 1
) as TPMSCategory
pivot(max(Data1) for Question in (' + @ques + ') ) as LatestAnswer
for json auto
) AS [my_json]
';
exec sp_executesql @sql1,N'@CategoryName VARCHAR(120)',@CategoryName
END
GO
The output I get when there are no record to display is
my_json |
---|
null |
I have a stored procedure where I get some column names from the table and take remaining column names dynamically. I get column names with no records if I don't convert it to JSON string but if I convert it to json_string
using JSON AUTO
it returns null instead of all column names with one null record. How to get all column name with one null record here?
ALTER PROCEDURE [dbo].[GetVendorCriticalityInventory]
@CategoryName VARCHAR(120) = null
AS
BEGIN
DECLARE @sql1 Nvarchar(Max);
DECLARE @ques Nvarchar(max);
DECLARE @CommonColumns NVARCHAR(MAX) = '
RID,
RequestID,
[Application/Vendor Name],
[Risk Identified],
[Application/Vendor Type],
[Date of the Request],
[IT Owner],
[Business Owner],
Requestor,
[App/Vendor Criticality],
ISOClause,
Submodule
';
SELECT @ques = STRING_AGG(CAST(QUOTENAME(Question) AS varchar(MAX)),',')
FROM
(select distinct Question
from TPMSMasterData
where TPMSCategoryName = @CategoryName) AS D
--SET @sql1 = '
SET @sql1 = '
WITH LatestData AS
(
select
R.RequestID as RID,
R.RequestIDInfo as RequestID,
isnull(R.NameOftheTool, ''N/A'') as [Application/Vendor Name],
RiskSummaryScore as [Risk Identified],
isnull(convert(varchar(10), R.RequestSubmitted, 120), ''N/A'') as [Date of the Request],
isnull(R.NameOfModule, ''N/A'') as [Application/Vendor Type],
''N/A'' as [IT Owner],
isnull(R.BusinessOwners, ''N/A'') as [Business Owner],
isnull(R.RequestCreatedByEmailID, ''N/A'') as Requestor,
isnull(cast(R.AppCriticalityScore AS varchar), ''N/A'') AS [App/Vendor Criticality],
isnull(A.Question, ''N/A'') as Question,
R.ISOClause,
R.Submodule,
isnull(case
when exists (SELECT 1
FROM STRING_SPLIT(A.DataControlLup, '':'') AS sg
WHERE TRIM(sg.value) = ''LookupTable'' )
then d.lookupDisplayValue
when A.DataControlLup like ''%[A-Za-z]%''
then c.LupDisplayValue
else b.Data1
end,
''N/A'') as Data1 ,
row_number() over (partition by B.RequestID, A.Question order by B.TPMSTransID desc) as rn
from
TPMSMasterData A
join
TPMSTransactionData B on A.TPMSID = b.TPMSID
join
RequestInfo R on B.RequestID = R.RequestID
left join
BusinessLookupTable c on TRY_CAST(b.Data1 as int) = c.BusinessLupID
left join
LookupTable d on try_cast(B.Data1 AS INT) = d.LookupID
where
A.TPMSCategoryName = @CategoryName
and R.WorkFlowCompleted = 1
)
SELECT(
select ' + @CommonColumns + ', ' + @ques + '
from (
SELECT ' + @CommonColumns + ',Question,Data1
FROM LatestData
WHERE rn = 1
) as TPMSCategory
pivot(max(Data1) for Question in (' + @ques + ') ) as LatestAnswer
for json auto
) AS [my_json]
';
exec sp_executesql @sql1,N'@CategoryName VARCHAR(120)',@CategoryName
END
GO
The output I get when there are no record to display is
my_json |
---|
null |
But the output I want is
my_json |
---|
[{"RID":null,"RequestID":null,"Application/Vendor Name":null,"Risk Identified":null,"Application/Vendor Type":null,"Date of the Request":null,"IT Owner":null,"Business Owner":null,"Requestor":null,"App/Vendor Criticality":null,"ISOClause":null,"Submodule":null,"How critical are the products/services ":null,"How difficult would it be to find an alternative third party ":null,"How frequently are these products utilized?":null}] |
This is my latest try
SELECT @DummyColumns = STRING_AGG('NULL AS ' + TRIM(value), ', ')
FROM STRING_SPLIT(@CommonColumns + ',' + @ques, ',');
,
TPMSCategory AS (
SELECT ' + @CommonColumns + ', Question, Data1
FROM LatestData
WHERE rn = 1
),
LatestAnswer AS (
SELECT ' + @CommonColumns + ', ' + @ques + '
FROM TPMSCategory
PIVOT (
MAX(Data1) FOR Question IN (' + @ques + ')
) AS PivotTable
)
SELECT (
SELECT ' + @DummyColumns + ', la.*
FROM LatestAnswer AS la
FOR JSON PATH
) AS my_json';
And I get this error:
Property 'RID' cannot be generated in JSON output due to a conflict with another column name or alias. Use different names and aliases for each column in SELECT list.
How can I solve this duplicacy error?
Share edited 19 hours ago Dale K 27.5k15 gold badges58 silver badges83 bronze badges asked yesterday Sapri sSapri s 691 silver badge9 bronze badges 6 | Show 1 more comment1 Answer
Reset to default 4You can just left join (or OUTER APPLY
) your resultset to a dummy row to guarantee at least one row in the results.
You also need to add INCLUDE_NULL_VALUES
otherwise you get an array with one empty object.
'
-- etc
where A.TPMSCategoryName = @CategoryName AND R.WorkFlowCompleted=1
),
TPMSCategory AS (
SELECT
' + @CommonColumns + ',
Question,
Data1
FROM LatestData
WHERE rn = 1
)
LatestAnswer AS (
SELECT
' + @CommonColumns + ',
' + @ques + '
FROM TPMSCategory
PIVOT (
MAX(Data1) FOR Question IN (
' + @ques + '
)
)
SELECT (
SELECT la.*
FROM (VALUES (1) ) AS v(dummy)
OUTER APPLY LatestAnswer AS la
FOR JSON PATH, INCLUDE_NULL_VALUES
) AS my_json;
';
Note that dynamic SQL should be in nvarchar(max)
not varchar(max)
.
本文标签:
版权声明:本文标题:sql - Stored procedure returns null instead all column names with one empty record in json_string output using JSON AUTO - Stack 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743774811a2536775.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
@sql1
contains? Have you tried running that query to see if it returns anything? – Panagiotis Kanavos Commented yesterdaymonstrous sql goes here...FROM (select 1 as dummy) x LEFT JOIN LatestData ON LatestData.RN = 1...monstrous sql pt2
– siggemannen Commented yesterday@CategoryName
is matching enough rows to generate column names in@ques
. Are there any matching rows inTPMSTransactionData
andRequestInfo
that would satisfy the join conditions? Any rows withR.WorkFlowCompleted=1
? – AlwaysLearning Commented yesterday