A New Logo
For SQL Server, it's coming soon. Surprisingly, when I was up in Redmond, quite a few people were asking about...
2008-06-04
707 reads
For SQL Server, it's coming soon. Surprisingly, when I was up in Redmond, quite a few people were asking about...
2008-06-04
707 reads
Steve Jones takes another attempt at comparing software development to another profession. Today's target: doctors.
2008-06-04
99 reads
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
2008-06-03
187 reads
Steve Jones takes another attempt at comparing software development to another profession. Today's target: doctors.
2008-06-03
54 reads
Steve Jones takes another attempt at comparing software development to another profession. Today's target: doctors.
2008-06-03
44 reads
Steve Jones takes another attempt at comparing software development to another profession. Today's target: doctors.
2008-06-03
63 reads
A look back at the news from the week including Windows 7 and taking an unwired vacation.
2008-06-02
254 reads
Last month the LCD screen on our treadmill went out. We bought it last Christmas (06) as a present for...
2008-06-02
737 reads
Is building software like building a house? Steve Jones digs into the comparison at the start of an editorial series looking at other professions.
2008-06-02
285 reads
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
2008-06-02
41 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