Priorities and the PASS Summit
As most of you know, I am not attending the PASS Summit this year. I had all my plans made,...
2010-11-09
627 reads
As most of you know, I am not attending the PASS Summit this year. I had all my plans made,...
2010-11-09
627 reads
Ladies and Gentlemen, SQL Server 2011, aka Denali, CTP 1 is now available as public download :
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6a04f16f-f6be-4f92-9c92-f7e5677d91f9
Although, I'm not attending...
2010-11-09
3,559 reads
I will be one of the “official” bloggers during the 2010 PASS Summit, which means that I get to sit...
2010-11-09
483 reads
I recently became aware of a special hack in Windows 7. It is called GodMode and can very simply be...
2010-11-09
658 reads
Am I stirring up a hornets nest or beating a dead horse bringing up a the PASS elections the day...
2010-11-08
474 reads
I had some fun last week presenting to the Space Coast User Group in Melbourne as well. They were so...
2010-11-08
328 reads
Hey folks, I recently had the privilege of joining my hometown user group South Florida SQL Server User Group for...
2010-11-08
372 reads
I recently wrote about solid state storage and its different form factor. Well, several major manufacturers have realized that solid...
2010-11-08
545 reads
Picked up this nice script from a client last week. Use this script below to create a Date Dimension for...
2010-11-08
1,137 reads
I've talked about the fact that everyone needs to contribute for the success of the team and that everyone should...
2010-11-08
1,455 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