Magazines I Read This Year
In December I went through my current magazine list and made some changes, mostly based on what I had been...
2012-02-03
639 reads
In December I went through my current magazine list and made some changes, mostly based on what I had been...
2012-02-03
639 reads
Here’s a niche idea that someone might have some fun with, build a site where someone can request some or...
2012-02-02
1,159 reads
I’ll be visiting the Space Coast group (http://spacecoast.sqlpass.org/) on Feb 9th to do a presentation on Professional Development Plans. I’m...
2012-02-01
733 reads
I’ve had making home made ice cream on my list of things to try for a while, since watching an...
2012-01-31
1,661 reads
The Idera ACE program is something I’ve been involved with for over a year now. I’ll share a bit of...
2012-01-30
1,670 reads
The call for applications is open today, a chance for six lucky people to do more in the SQL community...
2012-01-30
703 reads
I tried this out – Change.org that is – recently as part of a post about PASS and wanted to post a...
2012-01-28
791 reads
2012-01-27
703 reads
I saw this write up about the built in ability to both restore to factory settings as well as just...
2012-01-25
655 reads
I’ve managed to get by for more than 3 years with the original 64G SSD in my laptop, but lately...
2012-01-24
1,229 reads
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
I’m doing a small series on indexing basics for SQL Server, and on May...
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
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