Happy 4th of July
A blooper collection of mistakes and errors from a variety of editorials on this holiday weekend.
A blooper collection of mistakes and errors from a variety of editorials on this holiday weekend.
A blooper collection of mistakes and errors from a variety of editorials on this holiday weekend.
Alex Kozak returns with another Date puzzle. A question from a Simple-Talk reader gives Alex the inspiration to see if is possible to list unused date ranges in one Select statement.
Intel is moving in the direction of more and more cores on a single CPU, so what does that mean for programmers?
Intel is moving in the direction of more and more cores on a single CPU, so what does that mean for programmers?
Intel is moving in the direction of more and more cores on a single CPU, so what does that mean for programmers?
Many times people come across the Coalesce function and think that it is just a more powerful form of ISNULL. In actuality, I have found it to be one of the most useful functions with the least documentation. In this tip, I will show you the basic use of Coalesce and also some features you probably never new existed.
Two longtime members of the SQLServerCentral.com community received the well-deserved MVP status this week. Congratulate Jeff Moden and Michael Coles.
The problem arises when the hierarchy level increases as SQL Server is limited to 32 levels of recursion. We need a better way to implement recursive queries in SQL Server 2005. How do we do it?
This article is Part 2 in the series which explores the options available in SQL Server 2005 for Slowly Changing Dimensions
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...
Cara reschedule tiket Agoda anda bisa langsung menghubungi 081918503800 call center ... Untuk cara...
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