Speaking at SQL Saturday Atlanta (#733)
I am so honored and humbled to have been selected to speak at SQL Saturday Atlanta (#733) on May 19,...
2018-03-29
399 reads
I am so honored and humbled to have been selected to speak at SQL Saturday Atlanta (#733) on May 19,...
2018-03-29
399 reads
Two Saturdays ago, I was in Reykjavik, Iceland, speaking at my very first international SQL Saturday. WOW! Is all I...
2018-03-19
612 reads
SQL Saturday Richmond is just 5 days away and this will be the second time I have been selected to...
2018-03-19
245 reads
My grandfather used to say, “There’s more than one way to skin a cat.” I always thought it was a...
2018-03-08 (first published: 2018-03-02)
4,757 reads
I am so excited, I was selected to speak at SQL Saturday Richmond on March 24, 2018, in Richmond, Virginia.
SQL...
2018-02-06
265 reads
I can finally breath a sigh of relief, my first time of presenting two sessions back to back is finally...
2018-02-06
253 reads
I am so excited to announce that I have been accepted as a speaking mentor on SpeakingMentors.com!
I struggled for so...
2018-01-31
490 reads
Holy Cow! I still can’t believe it, I was awarded the Microsoft MVP – Data Platform today. I guess I really...
2018-01-04
607 reads
Back in 2015, I said would think about speaking in my #TSQL2sday #61 post. Well here it is 2018 and...
2018-01-03
385 reads
I started speaking on a semi-regular basis this year after many years of trepidation. You can read about my first...
2017-11-17
302 reads
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...
By Steve Jones
One of the things a customer asked recently about Redgate Data Modeler was how...
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