My Favorite Attorney – Chris D’Amico
Not often I do plugs here, but then again, it’s rare that I just get first class service, so read...
2010-10-07
386 reads
Not often I do plugs here, but then again, it’s rare that I just get first class service, so read...
2010-10-07
386 reads
One of the things that I’ve seen cause a few headaches at SQL Saturday events is the scheduling. First, before...
2010-10-07
500 reads
I am heading down to Houston, TX to speak at the Houston Techfest this weekend. Being a Houston native makes...
2010-10-07
403 reads
I recently did a VMWare/SAN assessment for a client. The expressed reason, or the reason relayed to me (not always...
2010-10-06
3,937 reads
As I write this SQLSaturday #49 in Orlando is right around the corner - October 16, to be exact. My friends...
2010-10-06
465 reads
From time to time I hear of DBAs that had to restart the SQL Server service on a 2005 or...
2010-10-06
964 reads
We technically released it on Monday but I didn’t want to blog about it for a couple days since we...
2010-10-06
743 reads
We crossed the 1,000,000 post mark on SQLServerCentral today and that’s very cool to me. A few others as well...
2010-10-06
429 reads
After having setup my first SQL 2008 R2 Enterprise (build level 10.50.1702) database mirror as High Safety with automatic failover,...
2010-10-06
6,252 reads
[This is part four in a series of posts about how to effectively transition to your new role after being...
2010-10-06
803 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