Who Wants to Be Rich?
With all the concern over the economy lately, Steve Jones talks about about finances and tries to bring perspective to those of us in the real world.
2008-10-18
76 reads
With all the concern over the economy lately, Steve Jones talks about about finances and tries to bring perspective to those of us in the real world.
2008-10-18
76 reads
With the economy slowing the the world facing a financial crisis, Steve Jones polls the man on the street this Friday.
2008-10-17
150 reads
I've had a bunch of writings based on finances over the last couple weeks, and I've tried to spread them...
2008-10-17
660 reads
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
2008-10-17
782 reads
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
2008-10-17
516 reads
2008-10-17
2,117 reads
With the economy slowing the the world facing a financial crisis, Steve Jones polls the man on the street this Friday.
2008-10-16
85 reads
With the economy slowing the the world facing a financial crisis, Steve Jones polls the man on the street this Friday.
2008-10-16
63 reads
With the economy slowing the the world facing a financial crisis, Steve Jones polls the man on the street this Friday.
2008-10-16
72 reads
A great company will be big enough and small enough. Steve Jones talks about finding that balance.
2008-10-15
99 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’ve been learning more about the google knowledge panel and it seems like one...
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
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