Pro SQL Server on Linux–Install
As part of my learning goals for 2018, I wanted to work through various books. This is part of my...
2019-01-09
357 reads
As part of my learning goals for 2018, I wanted to work through various books. This is part of my...
2019-01-09
357 reads
I like participating in the Advent of Code each year, though my participation often varies wildly as life gets in...
2019-01-09 (first published: 2018-12-28)
2,153 reads
2019-01-09
656 reads
As we gather more and more data about individuals, not only does security become an issue, but also the morality of using the data.
2019-01-08 (first published: 2014-11-18)
146 reads
2019-01-08
662 reads
2019-01-07
926 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2019-01-04 (first published: 2018-12-26)
2,305 reads
Volunteering is a good thing for us to do, but it can be overwhelming at times.
2019-01-04
74 reads
It seems that many SQL Servers can be lacking memory. Adding more is one way to improve performance, but Steve has other ideas.
2019-01-03
128 reads
2019-01-03
784 reads
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
Employee owned company, been around for over 50 years. Hybrid opportunity, looking folks in Pacific...
i have huge table with lot of data and is also wide. i took...
Comments posted to this topic are about the item Creating a JSON Document II
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