My First Computer
OK, I’m not going to make a huge habit of responding to these chains, but I have a few spare...
2009-02-27
1,655 reads
OK, I’m not going to make a huge habit of responding to these chains, but I have a few spare...
2009-02-27
1,655 reads
The BoiseCodeCamp and TechFest will be held Saturday, March 28th at Boise State University. This free event include 57 one-hour...
2009-02-26
1,384 reads
If you haven't visited yet, you definitely want to read Linchi's blog - it's packed full of on topic posts about...
2009-02-26
1,806 reads
Last year I was in a bookstore and looking through some books with Andy Warren of End to End Training....
2009-02-26
1,658 reads
I've got three speaking engagements lined up in next two months:
Wed, March 11 @ oPASS: The Truth About Disk Performance & Configuration....
2009-02-26
1,407 reads
The other day Paul Neilson wrote a simple post making predictions about SQL Server in the Cloud. That got a...
2009-02-25
1,619 reads
Chris Shaw, owner of SQL Oncall, recently had an issue in his business. Chris provides DBA services on a remote...
2009-02-25
1,651 reads
If you are interested in speaking at the devLINK Technical Conference in Nashville, TN, August 13-15th, you need to get...
2009-02-25
1,348 reads
Most of us aren't good decision makers. We make decisions based on emotion rather than facts, and for many decisions...
2009-02-25
2,280 reads
Like most everyone who works hard in our industry, I’ve run into more than a few conflicts trying to balance...
2009-02-25
1,594 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