Great Leaders in My Career
My friend Grant Fritchey recently posted in response to a quiz and at the end of that mentioned that he'd...
2009-05-04
578 reads
My friend Grant Fritchey recently posted in response to a quiz and at the end of that mentioned that he'd...
2009-05-04
578 reads
Just had a call with Ken Starnes last week and all is proceeding for a great two track event in...
2009-05-04
296 reads
It's too quiet in the house.
So I headed out to get some lunch and work at Paradise Bakery. They have...
2009-05-04
395 reads
This is part one of a series on writing a technical article. The advice might apply to non-technical articles, but...
2009-05-04
1,680 reads
I drove up on Friday night for the speaker dinner, getting there after a busy day trying to catch up...
2009-05-03
412 reads
I was engaged in a conversation recently where the topic under discussion was "What defines an "A" class player?" Others...
2009-05-02
376 reads
I have written two new articles and they are going to be published, not on SSC but on SSWUG. I...
2009-05-02
1,284 reads
I've been trying to feature a blog each month and for April (one day late!) it's Aaron Alton. HOBT stands...
2009-05-01
489 reads
This morning I had an 8am call with the owners of my company and a consultant that was proposing some...
2009-05-01
443 reads
Not too long ago the developer community got a fantastic resource called Stack Overflow. It's a question and answer site,...
2009-05-01
1,061 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