2019-02-20
659 reads
2019-02-20
659 reads
At Redgate, we do a lot of research. Maybe not as much as Microsoft Research, but we are always trying...
2019-02-19
862 reads
Steve talks about the level of engineering effort we need in software development.
2019-02-19
78 reads
Triggers can be confusing and complex for many developers new to SQL. Steve Jones gives a few ideas for learning more about this construct as well as practicing writing them.
2019-02-19
2,931 reads
2019-02-19
692 reads
If you’ve had struggles with database development and had a real world disaster, you could win in a new Redgate...
2019-02-18
166 reads
Steve talks about the need to be careful with backups in this age of malicious attackers.
2019-02-18
62 reads
2019-02-18
862 reads
2019-02-15
80 reads
As part of my learning goals for 2018, I wanted to work through various books. This is part of my...
2019-02-15
1,373 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