RTFM365
Physicians have primum non nocere – a Latin phrase that means “First, do no harm”. (Thank you, WikiPedia.) I think for...
2010-12-01
595 reads
Physicians have primum non nocere – a Latin phrase that means “First, do no harm”. (Thank you, WikiPedia.) I think for...
2010-12-01
595 reads
When SQL Server receives a new query, the Query Optimizer undertakes the task of identifying a good plan to resolve the...
2010-12-01
679 reads
The Development DBA role, though not as common as the more prominent DBA and Database Developer roles in the database...
2010-12-01
4,504 reads
When it rains it pours.
Last week my Nano died. It won’t hold a charge, or at least it won’t...
2010-12-01
447 reads
At a recent client engagement we built a SQL Server Reporting Services (SSRS) report with a T-SQL based data source....
2010-12-01
2,375 reads
It is amazing how the months just seem to fly by these days. I probably say that every month. It seems appropriate though. This month we will be broadcasting...
2010-12-01
2 reads
It is amazing how the months just seem to fly by these days. I probably say that every month. It...
2010-12-01
547 reads
Worthy of an editorial, but this is a pretty good use-case for why SQL Azure might make sense. This is...
2010-12-01
403 reads
I guess I might need to go back to RAID. From the Windows Team Blog, there is a decision to...
2010-12-01
443 reads
How time flies - it really has been almost 2 1\2 weeks since the 2010 PASS Summit came to a close!...
2010-11-30
1,504 reads
By Brian Kelley
I developed these rules a while back, before COVID. I had a period of...
By Steve Jones
Someone asked why I would use TRY_PARSE after I posted a question at SQL...
My mugI grew up surrounded by coffee farms in Guatemala and somehow spent most...
I have a table that ends in ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]. I'm about to...
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
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