DBA in Space: Behind the Scenes—Question 10
This is a continuation of my DBA in Space journal.
Alien Brad is not looking very well (more boils), or very...
2011-12-02
862 reads
This is a continuation of my DBA in Space journal.
Alien Brad is not looking very well (more boils), or very...
2011-12-02
862 reads
This is a continuation of my DBA in Space journal.
Episode nine was filmed in the “Mars” exhibit. In this scene,...
2011-12-01
630 reads
December is the last month of the year, and is often a good time to reflect on the past year...
2011-12-01
1,178 reads
Part 1 of Question 8—The question.Part 2 of Question 8—The follow up to the question.This is a continuation of my...
2011-11-30
1,851 reads
This is a continuation of my DBA in Space journal.
Episode seven is filmed at the “Animals in Space” exhibit at...
2011-11-29
571 reads
As we have done for the last several years, SQLServerCentral.com will be offering its own track at SQL Server Connections...
2011-11-29
746 reads
If you are a DBA in Space fan, and in case you missed them, there have been two items published...
2011-11-28
670 reads
This is a continuation of my DBA in Space journal.
Episode six is filmed at the “Visions of the Future Exhibit”...
2011-11-28
748 reads
Part 1 of Question 5—The question.Part 2 of Question 5—The follow up to the question.This is a continuation of my...
2011-11-23
601 reads
This is a continuation of my DBA in Space journal.
With each episode, DBA in Space becomes goofier and goofier. Episode...
2011-11-22
544 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...
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