February MVP – Melody Zacharias
The February MVP nomination goes to Melody Zacharias (B|T).
Melody hails from our neighboring country to the north, beautiful Canada. While we...
2016-03-17
433 reads
The February MVP nomination goes to Melody Zacharias (B|T).
Melody hails from our neighboring country to the north, beautiful Canada. While we...
2016-03-17
433 reads
In case you missed it, back in November I blogged about the importance of nominating individuals within the SQL Server...
2016-03-10
391 reads
If you are a member of PASS, you probably got an email from our President, Thomas LaRock. I interpreted his...
2015-11-25
616 reads
If you follow Grant Fritchey (B|T) at all, you know that every month he picks a “Speaker of the Month”....
2015-11-19
461 reads
If you have been around the SQL Community long enough, you probably have heard of a software company called Idera....
2015-10-28
698 reads
This weekend I’ll be traveling to Kansas City, Missouri for their annual SQL Saturday. Normally, I would just drive to this...
2015-10-01
465 reads
As I’ve mentioned before, living in Louisville offers up great opportunities to various events within the SQL Community. This weekend...
2015-09-23
531 reads
In the world of performance monitoring, there a number of ways to identify problems. Each method is different and usually, neither...
2015-08-13
719 reads
I recently blogged about the opportunity to speak at that the Omaha SQL Server User group. In a nutshell, being a co-founder...
2015-08-11
534 reads
If you follow the Twitter account for SQL PASS, you probably noticed that they are actively promoting individual Summit 2015 speakers....
2015-08-11 (first published: 2015-08-06)
1,805 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