2013-02-05
2,278 reads
2013-02-05
2,278 reads
2013-01-08
2,383 reads
2012-12-03
2,665 reads
2012-11-08
2,673 reads
2012-11-01
1,916 reads
2012-10-19
3,095 reads
2012-06-15
2,786 reads
2011-12-12
1,903 reads
2011-12-05
2,061 reads
2011-11-30
2,120 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 Designing Database Changes Before Deployment:...
Comments posted to this topic are about the item Removing TDE
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