2018-06-15 (first published: 2018-01-04)
2,095 reads
2018-06-15 (first published: 2018-01-04)
2,095 reads
2018-06-12 (first published: 2018-01-03)
1,974 reads
2018-06-11 (first published: 2018-01-03)
2,663 reads
2018-06-08 (first published: 2018-01-03)
2,536 reads
2018-06-07 (first published: 2018-01-13)
2,376 reads
2018-06-05 (first published: 2018-01-11)
2,185 reads
2018-05-30 (first published: 2018-01-03)
2,514 reads
2018-02-28 (first published: 2018-01-10)
3,097 reads
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...
By Steve Jones
One of the popular features of Redgate Monitor has been the ability to add...
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