The Easy Phone Restore
This is hardware week for me, with a new phone coming in the mail. This was a warranty replacement for...
2016-02-18
766 reads
This is hardware week for me, with a new phone coming in the mail. This was a warranty replacement for...
2016-02-18
766 reads
In a similar vein to last week’s blog post… I heard an interesting comment recently. “Change that Column != 2 to...
2016-02-17 (first published: 2016-02-09)
1,926 reads
Life we be so much easier if we could just trust everyone, but since we can’t we need solid security...
2016-02-17
968 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-02-17
7,604 reads
Many traits make up data professionals and the many who find themselves in leadership roles. The traits being shared in...
2016-02-17 (first published: 2016-02-10)
1,799 reads
When doing technical writing, or for that matter most forms of writing , we need to be able to refer to...
2016-02-17
657 reads
This month’s TSQL Tuesday post is from one of my favorite people in the community – Jorge Segarra a.k.a. SQL Chicken. It...
2016-02-17
447 reads
So this month I’ve decided to bring every participant in this blog series kicking and screaming into the BI world. Power BI, if you haven’t heard or seen it...
2016-02-17
14 reads
So this month I’ve decided to bring every participant in this blog series kicking and screaming into the BI world. Power BI, if you haven’t heard or seen it...
2016-02-17
25 reads
So this month I’ve decided to bring every participant in this blog series kicking and screaming into the BI world....
2016-02-17
1,987 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