Who Wants to Be Rich
Late in getting this one out there, but it's interesting to see people's responses. Especially to my story.
As a kid...
2008-10-20
845 reads
Late in getting this one out there, but it's interesting to see people's responses. Especially to my story.
As a kid...
2008-10-20
845 reads
I first ran across these words as a Citadel cadet. Now those who know of my days at El Cid...
2008-10-19
825 reads
I suspect final preparations will stretch all the way through next Saturday morning, but at this point we've done most...
2008-10-19
499 reads
I’ve thought this for a long time: you need to run your business as a business, not an investment. Too...
2008-10-19
881 reads
I have two speaking engagements for the week of October 19:
South Florida SQL Server User Group - West Palm Beach - October...
2008-10-18
693 reads
I've had a bunch of writings based on finances over the last couple weeks, and I've tried to spread them...
2008-10-17
660 reads
Why, when you can help others, that's when!
In my role as a senior Moderator with the MSDN SQL Forums, I am often...
2008-10-17
455 reads
I was teaching a private class recently that had both DBA's and network types in the room, one of the...
2008-10-16
821 reads
I've just recently acquired a new laptop and my resolution is to install no software on it that I'm not...
2008-10-16
675 reads
As I travel and visit DBAs from around the United States, I am always surprised at the job titles DBA...
2008-10-16
638 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...
This week my BI Developer colleague proudly showed me a new Power BI report...
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