Cheap Vacation/Travel Books
As you've probably noticed via the blog I read a lot; technical, fiction, and non-fiction. Reading can be an expensive...
2008-09-25
1,720 reads
As you've probably noticed via the blog I read a lot; technical, fiction, and non-fiction. Reading can be an expensive...
2008-09-25
1,720 reads
Why did I write this? I got challenged by Andy Warren
to write a bit about why I wrote something. I...
2008-09-25
1,587 reads
Pershendetje te gjithve...edhe perkunder voneses se postimeve te njepasnjeshme ne blog si duket deri me tani jeni njoftuar te gjithe...
2008-09-25
1,823 reads
EarlierI mused a bit about when and why it makes sense to upgrade to a new laptop. One note I...
2008-09-24
2,028 reads
Why did I write this? I got challenged by Andy Warren
to write a bit about why I wrote something. I...
2008-09-23
1,533 reads
I've never really gotten the social site thing. I don't get the appeal of Facebook, LinkedIn, Plaxo, MySpace, etc., beyond...
2008-09-23
1,628 reads
Several years ago during the first iteration of the Orlando SQL Server Users Group I talked a friend into attending....
2008-09-23
1,837 reads
I've been playing with WSUS lately and I've been less than satisfied with the reporting. Since the information I need...
2008-09-23
1,112 reads
Mechanical posts are ones that are either auto-generated, or manually input with no real additional work put into them - an example...
2008-09-22
1,045 reads
Why did I write this? I got challenged by Andy Warren to write a bit about why I wrote something....
2008-09-22
766 reads
By Steve Jones
This month we have a new host, Meagan Longoria, who graciously agreed to help...
By Steve Jones
I’m at the UK Redgate office today, meeting with senior leaders in all areas...
Optimizing Azure SQL Database performance often begins with identifying the most resource-intensive queries. Understanding...
I’m currently researching the best wireless credit card terminal for a growing business and...
Comments posted to this topic are about the item Creating a JSON Document IV
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Restoring Azure Key Vault Keys...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT YearEstablished, json_objectagg(city : TeamName) FROM dbo.NFLTeams GROUP BY YearEstablished;See possible answers