2006-11-23
866 reads
2006-11-23
866 reads
2006-11-22
1,753 reads
2006-11-21
854 reads
Steve Jones talks about the ne value of the new certification program from Microsoft.
2006-11-20
581 reads
2006-11-20
1,008 reads
It's the last day of the show and my apologies for not blogging.
I haven't carried my laptop around this year...
2006-11-17
1,399 reads
2006-11-17
1,260 reads
2006-11-16
1,118 reads
2006-11-15
1,907 reads
2006-11-14
1,172 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