2008-02-19
60 reads
2008-02-19
60 reads
2008-02-18
82 reads
A perspective from Richard Collins on the creation of a government IT profession in the UK.
2008-02-18
78 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-15
46 reads
Why don't we have updates, patches, and service packs slipstreamed into the base product for new installs?
2008-02-14
140 reads
Windows 2008 RTMs, a change from the SQL Server support team, and a Jump Start for Katmai.
2008-02-11
54 reads
Using the Identity Property might be one of the more debated features of SQL Server. This editorial was originally published on Mar 5, 2008. It is being re-run as Steve is on vacation.
2008-02-11
293 reads
2008-02-08
48 reads
Corporate management often asks for feedback and buy-in with their ideas and programs. Why don't they get it?
2008-02-06
62 reads
Employee compensation is more than just salary. Steve Jones talks about how you might look at building more effective compensation plans for workers.
2008-02-05
102 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