Blue Hat
Microsoft had their Blue Hat security conference recently, inviting hackers to take their shots at the Microsoft products. Mostly security...
2006-03-16
1,565 reads
Microsoft had their Blue Hat security conference recently, inviting hackers to take their shots at the Microsoft products. Mostly security...
2006-03-16
1,565 reads
One of the challenges in writing about a new version of SQL Server is
finding out information, especially for the less...
2006-02-20
1,403 reads
I've been working on the "Designing a Database Consolidation Strategy" chapter of my book and it's been quite an effort....
2006-02-17
1,492 reads
I haven't had time to research the extent, but someone reported plagiarism and the author admitted the code, while "from...
2006-02-06
1,418 reads
I left at lunch to hit the gym and then meet a friend. Afterwards I stopped by Starbucks to do...
2006-02-03
1,409 reads
This is very interesting.
I've often thought that blogs were a great source of information, but it is more unvetted than...
2006-02-03
1,372 reads
Sometimes those connection problems come in the most interesting ways.
I took a few minutes over lunch today to try...
2006-01-24
1,393 reads
I had a couple people ask about the move after my editorial, but my wife doesn't like the address to...
2006-01-20
1,551 reads
As if it weren't enough that I was moving my home, the SSC site is also moving. I'll drop some...
2006-01-18
1,426 reads
I decided to commit to the book, so I'm waiting on some information and a contact from my co-author and...
2006-01-12
1,462 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