2006-07-13
931 reads
2006-07-13
931 reads
2006-07-12
1,089 reads
2006-07-11
1,207 reads
2006-07-10
981 reads
2006-07-07
1,420 reads
I took the 70-441 exam last week and passed, which is good since I'm
working on part of the exam prep...
2006-07-07
1,476 reads
Our spotlight series is bringing you a look at the people behind the software at Microsoft and this time we delve into security a little as we get to know Raul Garcia.
2006-07-06
3,965 reads
2006-07-06
1,094 reads
2006-07-05
1,049 reads
2006-07-04
936 reads
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...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
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