The Gift Count
I went by Best Buy this afternoon, with my updated budget, to grab 2 last gifts and blow out the...
2009-10-31
1,453 reads
I went by Best Buy this afternoon, with my updated budget, to grab 2 last gifts and blow out the...
2009-10-31
1,453 reads
As promised and update on what has happened so far. A correction needs to be made. the P800 is a...
2009-10-31
1,732 reads
Trigger:
When you create trigger for insert and delete we will get two reference table as “inserted” and “deleted” respectively now...
2009-10-30
1,495 reads
I know there are a number of people heading to Seattle this weekend for the PASS Summit next week. I...
2009-10-30
1,623 reads
The past couple of days we have had some fun with a TeamBuilding exercise by means of designing our Pumpkin...
2009-10-30
2,077 reads
I love visiting Seattle, even in November. Getting to catch up with old friends and meet new people is always...
2009-10-30
1,457 reads
I am not about to get into a theoretical discussion of whether certifications will benefit you in your career. I...
2009-10-30
1,446 reads
As if I needed more.
I’ll be sitting at the blogger table and blogging live (as live as I get) during...
2009-10-30
1,389 reads
Kimberly and I went to the high risk doctor's office this morning for the ultrasound. Unfortunately, they realized very quickly...
2009-10-30
1,919 reads
My friend Trevor Barkhouse called me up a couple of nights ago and asked if I could host a Live...
2009-10-30
1,574 reads
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
Comments posted to this topic are about the item Every Database Has Problems
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers