Last Minute Learning
Someone posted a question about what should they try to learn for an interview coming soon, but the company was...
2007-12-20
1,536 reads
Someone posted a question about what should they try to learn for an interview coming soon, but the company was...
2007-12-20
1,536 reads
I've put this off for a while, but I needed a break from the routine and I'm starting to get...
2007-12-20
1,384 reads
We had our final meeting of the year last night, minutes posted here. Pretty good turn out, 22 total. And...
2007-12-19
1,437 reads
Usually I'm the one working on my podcasts and starring in them. However I got invited to participate in and...
2007-12-18
1,434 reads
I'm a fan of lists so that I stay on track rather than trying to remember all things at the...
2007-12-18
1,413 reads
As an owner of a small business one of the constant struggles is time management, and more importantly, finding time...
2007-12-17
1,487 reads
I'm sure that most of you know that you cannot turn off logging in SQL Server. You can minimize the...
2007-12-17
1,436 reads
I ran across this in the Google bloghttp://googleblog.blogspot.com/2007/12/encouraging-people-to-contribute.html announcing a new beta feature called Knol that allows an author to...
2007-12-14
1,670 reads
I ran across this list of interesting tools by Scott Hanselman and there is some good stuff to look at...
2007-12-14
1,360 reads
A short congratulations to myself. I was answering posts last night after tech editing another chapter of the book I'm...
2007-12-12
1,474 reads
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
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...
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