SQL Confessions
I had a brainstorm of an idea for a group of articles on my blog a couple of weeks ago...
2010-12-13
510 reads
I had a brainstorm of an idea for a group of articles on my blog a couple of weeks ago...
2010-12-13
510 reads
Watching videos?! Su-ure!
If you’re reading this, it must be Monday morning. Oh dear, that means I am officially starting my...
2010-12-13
527 reads
Well, we have 3 days left in the PASS SQLRally Call for speakers and we are doing well. We have over 70 completed submissions, there may be more in a...
2010-12-13
5 reads
For header images, I typically embed an image into the report. However, there may be times when you need to...
2010-12-13
829 reads
I’ve happened to have a few networking events happen recently that I thought I’d share, all part of trying to...
2010-12-13
649 reads
Don't miss the SQL Lunch tomorrow.
#44-Learning SSIS under 1 hour
Speaker: Jose Raul Chinchilla
Add To Outlook: Add To Calendar
Meeting URL: https://www.livemeeting.com/cc/usergroups/join?id=FN36T2&role=attend
Date...
2010-12-13
915 reads
In several previous posts I have described some of the usability changes that will come with the next release of...
2010-12-13
1,475 reads
Technology, especially information technology, is the greatest thing to ever happen to mankind, freeing us from toil and drudgery. Technology,...
2010-12-13
922 reads
Well, we have 3 days left in the PASS SQLRally Call for speakers and we are doing well. We have over...
2010-12-13
329 reads
While learning query tuning topics, I got a chance to understand anatomy of data page and different types and levels...
2010-12-13
6,813 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