Looking for More Storage
I got a new cell phone. Not big news, but it’s primarily because I need want more storage. It’s a...
2019-02-11
210 reads
I got a new cell phone. Not big news, but it’s primarily because I need want more storage. It’s a...
2019-02-11
210 reads
There is more to our lives than work, and Steve asks that we learn more about other parts of life.
2019-02-08
82 reads
As part of my learning goals for 2018, I wanted to work through various books. This is part of my...
2019-02-08
1,356 reads
2019-02-08
929 reads
Learning active forgiveness can be a challenge, but it may help you build a better team.
2019-02-07
79 reads
2019-02-07
864 reads
Setting up your authorization and security can be fairly easy, but perhaps we ought to consider more complex scenarios.
2019-02-06
64 reads
I never knew this, but stored procedures have versions.
I was browsing the CREATE PROCEDURE doc page, and stumbled upon this...
2019-02-06
1,047 reads
2019-02-06
695 reads
Disaster recovery planning can be hard, and we often forget about some of the non technical issues.
2019-02-05
68 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