Annoyed with LinkedIn
Funny how tools can surprise you. I’ve had in mind to set up a sub-group and invite all the SQLSaturday...
2009-10-26
599 reads
Funny how tools can surprise you. I’ve had in mind to set up a sub-group and invite all the SQLSaturday...
2009-10-26
599 reads
My book "Beginning T-SQL 2008" came out about two weeks ago. http://www.amazon.com/Beginning-T-SQL-2008-Kathi-Kellenberger/dp/1430224614/ref=sr_1_1?ie=UTF8&s=books&qid=1256604424&sr=8-1 It's a beginning book because I assume that the...
2009-10-26
784 reads
In early September I received a complimentary copy of Murach’s JavaScript and DOM Scripting by Ray Harris (Amazon) to review. ...
2009-10-26
511 reads
Here I go again, trying to finish up the translation. Thank you very much to local MVP Eric Moreau for his help fixing...
2009-10-26
855 reads
Encryption is a tough subject, but it’s one that’s fascinated me for years. I downloaded PGP when it came out...
2009-10-26
1,055 reads
I have to admit, when asked to perform a migration from Oracle to SQL Server over the past couple of...
2009-10-26
586 reads
It's one week until the PASS Summit. At this time next week I'll be on a plane, heading to Seattle...
2009-10-26
677 reads
One week from today I will be in Seattle for my first ever PASS Summit. One of the things I...
2009-10-26
600 reads
Besides giving two Community Session presentations (here and here), next week, I will be involved in the Birds of a...
2009-10-26
609 reads
Here are the slide decks and code samples from my sessions at SQL Saturday #21 Orlando on 10\17. I've also...
2009-10-26
407 reads
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
By James Serra
Model Context Protocol, or MCP, is one of those technical ideas that sounds more...
When starting with AWS RDS Aurora for managing relational databases in the cloud, many...
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...
Ruko Soho Emas, Jl. Klampis Jaya No.39, Klampis Ngasem, Sukolilo, Surabaya, Jawa Timur 60117
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