Ground Zero Database Design
All the SQL world should take database modeling classes, and thrive in the light of well-designed data structures. Back in...
2010-10-14
657 reads
All the SQL world should take database modeling classes, and thrive in the light of well-designed data structures. Back in...
2010-10-14
657 reads
Active Directory Users and Computers (ADUC) is a very common tool over on the Active Directory side. As the name...
2010-10-14
8,559 reads
After making the trip last weekend to Houston for Houston Techfest with the kids I am off again, but this...
2010-10-14
563 reads
You know those guys that work the door at clubs, seperating the wheat from the chaff, culling the herd, Choosing the Slain, sifting...
2010-10-14
713 reads
SQLSaturday #59 Speaker Interviews Series #3 - Kevin S. Goff
You can catch all the speaker interviews on this upcoming event, on...
2010-10-14
918 reads
Recently I was at an event and a speaker wasn’t able to make a session. There was a minor scramble,...
2010-10-14
754 reads
There are now 4 weeks until the PASS Summit and a few times now I’ve discussed ( 1, 2, 3 ) some...
2010-10-14
784 reads
First, a reminder that our fourth annual SQLSaturday is this Saturday, October 16, 2010, at Seminole State College in Lake...
2010-10-14
598 reads
A while ago, I showed you how to find out what indexes were on a table using the GUI. Today,...
2010-10-14
35,179 reads
Please join as at the 2010 global summit for the Professional Association for SQL
Server in Seattle. The conference is the...
2010-10-13
489 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