SQL Server Events in the UK – June 2013
Oh my god, there are so many events happening this month it is crazy. I’m going to break with tradition...
2013-06-03
696 reads
Oh my god, there are so many events happening this month it is crazy. I’m going to break with tradition...
2013-06-03
696 reads
Things are really ramping up in May and June this year, it’s a great time to be an IT Professional with so...
2013-05-01
860 reads
Earlier this year I had the chance to collaborate on my first ever white paper “Top 10 Tips for Optimizing...
2013-04-30
1,428 reads
Thomas La Rock (Blog | Twitter) recently wrote a blog post about misplacing a device he has called a FitBit One which...
2013-04-29
1,714 reads
There has been lots of speculation in the SQL Server community as to what the official name of the next...
2013-04-18
1,265 reads
Before we dive in to the post, I’d like to give a big thank you to Bob Pusateri (Blog|Twitter) for...
2013-04-09
784 reads
The bank holiday and work have put me a few days behind schedule, but here is the list out all of the...
2013-04-04
748 reads
This weekend was full of a range of emotions for me. Grab a beverage and I’ll tell you all about...
2013-03-11
867 reads
Unless you’ve entered “100th blog post” into your favourite search engine and clicked on pot luck (or whatever it is)...
2013-03-01
563 reads
Welcome to the first of what I plan to be a regular recurring theme. Right here I will list out...
2013-03-01
768 reads
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
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...
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