Pass Summit 2017
It’s about that time of year again when there is a buzz in Seattle in regards to PASS Summit. Many...
2017-10-26
417 reads
It’s about that time of year again when there is a buzz in Seattle in regards to PASS Summit. Many...
2017-10-26
417 reads
This week has been a whirlwind; as the results came in earlier this week on the election I wanted to...
2017-09-28
538 reads
As part of the campaign material for this years election for Board of Directors; the candidates were asked to answer...
2017-09-19
414 reads
This year I decided to take “someday” to heart and do something that has been on my mind for awhile...
2017-09-21 (first published: 2017-09-14)
1,676 reads
And like the wind another SQL Saturday Louisville has come and gone. This past weekend seemed to be a huge...
2017-08-09
485 reads
We are having an extra Louisville SQL Server and Power BI User Group meeting this month due to the SQL...
2017-07-24
412 reads
Last week Aaron Bertrand (b|t) published a post regarding five new PAC Community Ambassadors for SentryOne. I am privileged and...
2017-07-17
334 reads
Wow, hard for me to believe it has been a little bit since the last T-SQL Tuesday block party. This...
2017-07-11
489 reads
Over the course of several years, I have given many technical and non-technical presentations. It is fun for me to...
2017-06-07
451 reads
Sometimes we, as data professionals, have to think outside the box. I know, crazy idea right? Each shop and situation...
2017-04-26
440 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