You Bet Your Life
Yesterday, Jonathan Kehayias wrote in his blog post " Have you got air in your spare.." about dealing with a flat...
2009-10-22
360 reads
Yesterday, Jonathan Kehayias wrote in his blog post " Have you got air in your spare.." about dealing with a flat...
2009-10-22
360 reads
The PASS Summit agenda is shaping up and it’s already looking to be much busier than last year. The latest...
2009-10-21
554 reads
No, I’m not talking about a Dickens novel. I’m talking about the number of characters in a string. I had...
2009-10-21
1,639 reads
Just released on the PASS site is that news that Tom Larock, Jeremiah Peschka, and Brian Moran are the new...
2009-10-21
623 reads
I have a friend, he’s a technology guy and fairly savvy with hardware and software. We were talking recently and...
2009-10-21
850 reads
Quest Connect 2009 is occurring even as I type this. Get on over there if you’re interested in some free...
2009-10-21
502 reads
This isn’t exactly related to SQL Server. I did effect my productivity. I am a monitor junkie. I love multi-monitor...
2009-10-21
870 reads
If you meet me at PASS, you can win prizes!
OK, so maybe there’s a little more to it than that. ...
2009-10-21
714 reads
Hey there folks. I finally was able to get my persona domain name from a squatter who has been holding...
2009-10-21
391 reads
Picking up from yesterday, once we got through the confusion of the room changes everything settled down. I checked the...
2009-10-21
611 reads
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
Comments posted to this topic are about the item Every Database Has Problems
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers