2019-03-08
795 reads
2019-03-08
795 reads
2019-03-07
100 reads
2019-03-07
989 reads
Making changes on your own system for a SQL Change Automation project is great, but if you’re the only one...
2019-03-06
825 reads
Google and Microsoft have plans for dealing with data incidents. Steve thinks you should as well.
2019-03-06
74 reads
2019-03-06
821 reads
It seems that many companies are implementing AI into their systems. Steve notes that this isn't always a good idea.
2019-03-05
87 reads
2019-03-04
111 reads
2019-03-04
105 reads
2019-03-04
992 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