SQL Saturday New England: The New Date
The real world can get in the way of important things like SQL Saturday. In the case of SQL Saturday...
2010-10-12
569 reads
The real world can get in the way of important things like SQL Saturday. In the case of SQL Saturday...
2010-10-12
569 reads
Mark your calendars. Make your travel arrangements. Plan on being in the Boston area on April 16th, 2011. Three of...
2010-10-05
544 reads
I try to watch the search phrases that point people to the blog because sometimes, you get a sense of...
2010-10-04
446 reads
Adam Machanic (blog|twitter) has put on a SQL Saturday/Data camp event in New England for the last two years. I’ve...
2010-10-04
398 reads
I saw an odd statement the other day, “The size of the name of the parameter does not affect performance.”...
2010-09-27
1,032 reads
I was privileged to be able to attend and present at SQL Saturday 46 in Raleigh, NC, this last weekend....
2010-09-20
834 reads
Normally, I try to stick to posting technical info or community stuff on the blog, but there were a couple...
2010-09-07
572 reads
I am not a Reporting Services guru and nor do I play one on TV. I am however forced to...
2010-09-03
2,657 reads
Blogging has been a bit quiet of late. That’s because I’ve been spending a lot my spare time getting ready...
2010-08-30
767 reads
There are a lot of things I’d like to say about the PASS elections. I was on vacation last week...
2010-08-23
687 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