Voting Day is Here
Tis the season for voting and SQLServerPedia has thrown out an election as well. The SQLServerPedia awards are under way...
2010-11-02
428 reads
Tis the season for voting and SQLServerPedia has thrown out an election as well. The SQLServerPedia awards are under way...
2010-11-02
428 reads
November is upon us and in some areas this also means that the leaves have changed color. With the change...
2010-11-02
635 reads
Time for another T-SQL Tuesday and this time I’ll finish my entry in time. This month we are talking about...
2010-11-02
782 reads
This month T-SQL Tuesday is hosted by Paul Randal (@PaulRandal) and he asks the question, “Why are DBA Skills Necessary?”.
The...
2010-11-02
520 reads
I’m a little later than I had hoped getting this announced, but hopefully not too late! For the past couple...
2010-11-02
427 reads
Quote: “Database stuff, all this programming stuff, is easy. Anyone can do it. That’s why everyone in the company has sa...
2010-11-02
1,112 reads
Everyone know how to uninstall sql server very easy : control panel -<Add remove programs ->sql server some times you can...
2010-11-02
555 reads
Did you catch the brilliant and thought provoking editorial post Life Without a Net by Rodney Landrum on SQL Server...
2010-11-02
425 reads
SQLSaturday #59 – Speaker Interview #15 with Joseph D’Antoni
Let’s kick off this Tuesday, maestro please, with a little violin music, some...
2010-11-02
849 reads
On January 4, I’m speaking about index internals for the Performance Virtual Chapter
of PASS (http://performance.sqlpass.org).
Here’s my session abstract:
SQL Server provides...
2010-11-02
602 reads
By Brian Kelley
Fabiano Amorim has written an excellent article at Simple Talk on securing msdb. Here's...
By Steve Jones
This month we have a new host, which I am grateful for. So many...
I needed to do some research because there is more to #temp tables than...
Comments posted to this topic are about the item OUTER APPLY Fundamentals: Part 2
Comments posted to this topic are about the item Building Great Software
Comments posted to this topic are about the item The Range of Customers
I have this data in the OrderHeader table in a SQL Server 2025 database (ordered by CustomerID ASC):
orderid orderdate customerid complete 3 2025-05-10 00:00:00.0002 1 21 2024-01-10 00:00:00.0003 1 15 2023-10-28 00:00:00.0004 1 13 2025-03-08 00:00:00.0006 1 11 2024-04-02 00:00:00.0007 1If I run this query, how many rows are returned?
SELECT * from dbo.OrderHeader where customerid between 3 and '6'See possible answers