Networking, Newbies, and SQLPASS
This year, PASS is taking an extra step to help identify first time summit attendees. Most attendees are given ribbons...
2010-11-10
849 reads
This year, PASS is taking an extra step to help identify first time summit attendees. Most attendees are given ribbons...
2010-11-10
849 reads
New Version Sql Server “11? code name “Denali” CPT1 is ready to download here: http://msdn.microsoft.com/en-us/sqlserver/default.aspx Here are experts comment and...
2010-11-10
926 reads
The second day of the SQL PASS summit has already started in unique fashion. Today is #sqlkilt day, and there...
2010-11-10
1,057 reads
One of the small mysteries of the universe that I have been pondering lately is the fact that so many...
2010-11-10
422 reads
A few days ago I wrote about an election that was taking place (ok so it was a week ago at this point). That election was the SQLServerpedia Awards....
2010-11-10
7 reads
A few days ago I wrote about an election that was taking place (ok so it was a week ago...
2010-11-10
577 reads
I haven’t ever worried about this, but I had the need recently to check. I was looking a SQL Sentry’s...
2010-11-10
1,866 reads
Recently, a friend of mine asked me how he could have the date appended to the end of a file...
2010-11-09
13,955 reads
I enjoy blogging. I enjoy passing on the information that I have gathered over the years. I also enjoy doing...
2010-11-09
608 reads
I was in Best Buy, actually returning a couple iPads the other day. I had gotten a few for a...
2010-11-09
1,518 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