2019-02-25
1,439 reads
2019-02-25
1,439 reads
Will employee data become a target of hackers? It's likely more a movie plot than reality, at least, Steve hopes so.
2019-02-25
80 reads
2019-02-25
703 reads
A company is letting companies trade vacation for payments against student loan debt.
2019-02-22
72 reads
I’m not writing a post here on how to manage your money, but I will point you to Troy Hunt’s...
2019-02-22 (first published: 2019-02-01)
2,900 reads
2019-02-22
821 reads
No matter what the reason you have sensitive information, you need to treat it carefully.
2019-02-21
66 reads
2019-02-21
812 reads
2019-02-20
64 reads
We’ve started setting up our SQL in the City Summits for 2019 and the first one is London on April...
2019-02-20
774 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