2018-06-07
735 reads
2018-06-07
735 reads
2018-04-19
747 reads
2018-04-02
1,298 reads
Microsoft has released a version of SQL Server 2017 for Linux.
2018-03-26
2,728 reads
2018-03-13
970 reads
Transparent Data Encryption on an Availability Group and Automatic Database Seeding
2018-03-08
3,087 reads
2018-03-05
773 reads
2018-02-26
767 reads
2018-02-23
1,149 reads
2018-02-15
909 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