#SQLRelay 2013 R2 – Week 2
If you haven’t heard of SQL Relay and you live in the UK then shame on you. SQL Relay is...
2013-11-21
975 reads
If you haven’t heard of SQL Relay and you live in the UK then shame on you. SQL Relay is...
2013-11-21
975 reads
I feel really bad that I’ve not been able to blog recently. My draft area is littered with half written...
2013-11-19
729 reads
I’ve been a bit lapse in posting what I am up to recently. For example, I completely missed blogging about...
2013-11-19
713 reads
A lot has been said about what each candidate would like to do and their track record of delivering in...
2013-09-26
1,090 reads
As you may have seen in my post yesterday “PASS Board of Directors Election: Candidates announced” I am running for...
2013-09-24
705 reads
As you may have seen in my post yesterday “PASS Board of Directors Election: Candidates announced” I am running for...
2013-09-24
739 reads
Earlier this morning the official list of candidates running for the PASS Board of Directors was announced. I’m both delighted...
2013-09-23
570 reads
For those of you who may have been living under a rock for the last few years every year PASS...
2013-09-13
485 reads
The second incarnation of 2013 “SQL Relay” is bigger and better than ever. We have taken on board all of...
2013-09-12
670 reads
Snazzy title eh, I bet you can’t guess what this post is about. That’s right, it’s all about Monty Python!
A...
2013-09-11
772 reads
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
By Steve Jones
One of the things a customer asked recently about Redgate Data Modeler was how...
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