Search Stored Procedure Text
There will come a day, if it has not already come and gone, when you will want to search through...
2011-04-26
1,077 reads
There will come a day, if it has not already come and gone, when you will want to search through...
2011-04-26
1,077 reads
Ever have one of those days where no matter how hard you try you just can’t seem to make any...
2011-04-25
693 reads
For Day 25 of this series, I want to talk about how you go about picking a CPU for your...
2011-04-25
547 reads
Why should you go to the trouble to start blogging, speaking, answering questions or anything else. What’s the point?
I’ve written...
2011-04-25
1,333 reads
A sad weekend, and shocking news Sunday morning. I was out running errands when I checked email and found out...
2011-04-25
1,592 reads
Most of the time when I run a poll on my blog, I run it for at least a month...
2011-04-25
2,490 reads
I had a need today to disable all of our admin jobs while I moved our admin database to another...
2011-04-25
2,836 reads
Have you heard about this new project out there called SQLPeople? It is a new (relatively) project that is the brainchild of Andy Leonard. Andy is trying to help...
2011-04-25
11 reads
Have you heard about this new project out there called SQLPeople? It is a new (relatively) project that is the...
2011-04-25
544 reads
I have blogged before about my appreciation for the SQL community mainly within the PASS organization as that is what...
2011-04-25
542 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