PASS Performance Virtual Chapter Webcast
A quick check of my calendar this morning reminded me that I am presenting a session for the PASS Performance...
2013-12-02
839 reads
A quick check of my calendar this morning reminded me that I am presenting a session for the PASS Performance...
2013-12-02
839 reads
For those who will be at SQL Saturday #233 in Washington, DC, I’ll be giving my professional development talk, Being...
2013-12-02
2,069 reads
For those who will be at SQL Saturday #233 in Washington, DC, I’ll be giving my professional development talk, Being...
2013-12-02
312 reads
The Christmas countdown has begun for a number of us. This doesn’t mean it’s time to relax, there’s still plenty...
2013-12-02
605 reads
Well the short answer is that they just don’t have enough information to give a definitive answer. You will notice...
2013-12-02
651 reads
Alright, I’ve got your attention. You’re probably thinking “who is this crazy guy that is using the word Love with...
2013-12-02
559 reads
This is a temporary post that was not deleted. Please delete this manually. (e6e588b0-6d28-4504-914d-36fc0145f1b9 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2013-12-01
404 reads
Well, this fall has been crazy. As you may have noted from a couple of my previous posts, link to...
2013-12-01
618 reads
EDIT: Please also see in depth comment from Brent Ozar on my main site which extends the query provided below...
2013-11-30
4,798 reads
SQL Server related information from Windows registries
The Windows Registry is a hierarchical database that stores configuration settings and options on Microsoft Windows operating systems. It contains...
2013-11-30
2,190 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