TGI SQL Friday - 16th September 2016 Weekly roundup
I have had an interesting week teaching Learning Tree course 534 Developing SQL Queries for SQL Server. I had an...
2016-09-16
447 reads
I have had an interesting week teaching Learning Tree course 534 Developing SQL Queries for SQL Server. I had an...
2016-09-16
447 reads
This week's Great Value IT Offers are in. If you want to your ITIL learning on this autumn we have...
2016-09-15
375 reads
My Top 5 series of books has proved very popular. The first post titled Top 5 books for Enterprise Architecture was the...
2016-09-13
1,779 reads
As regular readers of the blog will be aware, over the summer of 2016 here at gethynellis.com we have teamed...
2016-09-12
347 reads
The Top 5 series has proved rather popular. My Top 5 books for Enterprise Architecture was the most popular post in...
2016-09-12 (first published: 2016-09-07)
2,536 reads
Welcome to the TGI SQL Friday for the 9th September 2016. Here you will find the links of the posts...
2016-09-09
461 reads
Are you going to SQL Saturday Denmark, which is running on Saturday 17th September? If you are David Postlethwaite or @postledm...
2016-09-08
430 reads
As some of you know, here at gethynellis.com we have partnered with Learning Tree to offer you a range of courses...
2016-09-08
433 reads
Weekly Summary
Last week I was holiday in Cyprus. The weather was plus 30 degrees celsius all week. The pool was...
2016-09-02
524 reads
The SQL Server news this week is there is no news!
http://news.bbc.co.uk/1/shared/spl/hi/newswatch/history/noflash/html/1930s.stm
No this is not the 1930’s BBC.
There are no...
2016-08-26
346 reads
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers