Work Isn’t the Most Important Thing
I had quite an adventure today, away from work. We had a pipe freeze in the house, a sick kid,...
2011-02-02
1,091 reads
I had quite an adventure today, away from work. We had a pipe freeze in the house, a sick kid,...
2011-02-02
1,091 reads
As DBAs, making backups and restoring data is one of the foundational skills we all must master. But sometimes things...
2011-02-01
453 reads
Stinking Feet?
A couple months back I mentioned the SSWUG Free Expo Event: Basic and Complex SSIS Features. The time has...
2011-02-01
432 reads
I see a lot of advice that talks about the clustered index been the best index for use for range...
2011-02-01
1,742 reads
In November/December HQ requested that the Board to send in suggestions for possible sites for the 2013 PASS Summit. I...
2011-02-01
1,566 reads
This week the voting for the SQL Rally BI track went out, and I wanted to send a quick reminder...
2011-02-01
1,196 reads
In case you missed it last week, PASS has announced the speaker lineup for the next 24 Hours of PASS. ...
2011-02-01
567 reads
Licensing software is often a more complicated process than I think it should be. Licensing database software seems to be...
2011-02-01
5,174 reads
31 Days of SSIS
We’re at the thirty-first, and last, post for the 31 Days of SSIS. The series started with...
2011-02-01
1,449 reads
You’ve got a mountain of work to get done and not enough time to do it in. There’s simply just not...
2011-02-01
1,514 reads
Disclaimer: The following is built with Claude Code. Just need to justify my $100/mo...
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...
Hub Via Wa:628217555651 Alamat Jl. Ahmad Yani No.9, RT.01/RW.05, Marga Jaya, Kec. Bekasi Sel.,...
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
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