T-SQL Tuesday #73 Invitation – Naughty or Nice?
Hello Dear Reader! This is the first Tuesday of the month and you know what that means. It’s time to announce the T-SQL Tuesday Topic of the month! This...
2015-12-01
7 reads
Hello Dear Reader! This is the first Tuesday of the month and you know what that means. It’s time to announce the T-SQL Tuesday Topic of the month! This...
2015-12-01
7 reads
Hello Dear Reader! We are coming up upon the 9th SQL Saturday for Orlando. Orlando is where SQL Saturday began,...
2015-06-25
854 reads
Hello Dear Reader! We are coming up upon the 9th SQL Saturday for Orlando. Orlando is where SQL Saturday began, and the home to some pretty amazing speakers. We,...
2015-06-25
6 reads
I'm sitting on a plane. I'm in an exit row, still a big guy in a little seat. I go...
2015-01-22
789 reads
Hello Dear Reader! I’ve been the Data Platform Management Lead at Pragmatic Works for almost two years now. It’s been...
2014-11-26
1,252 reads
Hello Dear Reader! It's that time of the year again, time for the PASS Summit and the streaming Keynote. Here...
2014-11-05
877 reads
https://www.flickr.com/photos/socal_jim/2070088596/Hello Dear Reader! It’s that time of year again. The leaves are turning, temperatures are changing, and Halloween is once...
2014-10-31
1,183 reads
Hello Dear Reader! Two weeks ago I was very honored to be named a Microsoft SQL Server MVP. Since then...
2014-10-15
812 reads
Hello Dear Reader! The PASS Board of Director elections are upon us again. We have 3 spots open and 4...
2014-09-24
603 reads
Hello Dear Reader! In June this year I was recognized by PASS as with an Outstanding Volunteer Award. In an...
2014-09-15
656 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