SQL Saturday
So if you missed out on SQL Saturday you missed a great event and I highly suggest making it to...
2008-05-05
1,118 reads
So if you missed out on SQL Saturday you missed a great event and I highly suggest making it to...
2008-05-05
1,118 reads
Our 3rd SQLSaturday went amazingly well due to the efforts of Brian Knight and his volunteers. Attendance for the day...
2008-05-04
511 reads
I just wrapped up a high-octane day of SQL Server community education at SQL Saturday in Jacksonville, Florida. This event,...
2008-05-04
868 reads
I thought they were, but I've had a bit of a debate in the forums with someone. There was a...
2008-05-02
696 reads
Including the parameter values to the physical report so they get printed with the business data is a best practice...
2008-05-02
503 reads
The purpose of The Citadel, the Military College of South Carolina, is to prepare South Carolina's citizen soldiers. It is...
2008-05-02
873 reads
A minor change for the podcasts next week. I got my wireless microphone, and I'm working with it a bit...
2008-05-02
1,919 reads
If you've read my blog much you'll know that I'm deeply involved in trying to figure out how to build...
2008-05-01
530 reads
I've never really been a big fan of many of the aggregation sites. As such I have never really used...
2008-05-01
713 reads
One of the things that I made a conscious effort to do last summer was make a regular effort to...
2008-05-01
727 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
Hey all. I understand if this gets taken down due to the subject matter...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers