I have the following query and trying for the JSON format specified below:
SELECT
Convert(VARCHAR(10),[Date],110) HolidayDate
FROM
dbo.Holidays FOR JSON AUTO, ROOT('Holidays')
Current Output
{
"Holidays": [
{
"HolidayDate": "05-21-2018"
},
{
"HolidayDate": "05-22-2018"
},
{
"HolidayDate": "05-26-2018"
}
]
}
Expected Output
{
"Holidays": [
"05-21-2018",
"05-22-2018"
]
}
In SQL Server 2017 you can build your result with a combination of
string_agg
,json_query
andfor json path
:In SQL Server 2016 the solution is less elegant, but still working:
Results: