Redoing Work
I hate redoing work. I really try to make sure that I pay attention to what I'm doing, slow down...
2008-11-12
673 reads
I hate redoing work. I really try to make sure that I pay attention to what I'm doing, slow down...
2008-11-12
673 reads
Just heard back from Allen White, due to his schedule and minimal success creating a true team effort plans for...
2008-11-12
544 reads
I'd seen Jason Massie's post on Facebook of this SQL Quiz, but when I found Brian Kelley's post, I decided...
2008-11-11
791 reads
I don't typically do Internet chain mail, but Brian Kelley mentioned me in his post on his two mistakes and...
2008-11-11
738 reads
I will be attending the PASS Community Summit in Seattle, November 18-21, and will be making two presentations:
DBA 101: Best...
2008-11-10
399 reads
As most of you know, PASS (the Professional Association for SQL Server) is an independent, not-for-profit association, dedicated to supporting,...
2008-11-10
560 reads
I'm going to share what I can from the interview, but I'm going to have to be a little less...
2008-11-10
378 reads
When I first got my new laptop, I thought it was very cool. It included a fingerprint reader below the...
2008-11-10
366 reads
User groups provide so many benefits for those looking to get ahead in their career. User Groups share a common...
2008-11-10
505 reads
It's funny that many employees see moving into management as a way to stop actually doing work. In practice - if...
2008-11-09
245 reads
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
We suffered a SPAM attack from May 1-6, which unfortunately corresponded with time off...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
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 TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers