MSSQLTips Kindle Giveaway
Want a legitimate chance to win an eBook reader like a Kindle? Would having it loaded down with eBooks on...
2011-01-25
826 reads
Want a legitimate chance to win an eBook reader like a Kindle? Would having it loaded down with eBooks on...
2011-01-25
826 reads
Minnesota SQL Server User Group (PASSMN) will be meeting today. Come down and learn about SQL Server with Kalen Delaney...
2011-01-25
514 reads
Help us promote our upcoming PASS events by including any or all of these on your blog or in your...
2011-01-25
728 reads
31 Days of SSIS
Another day, another blog post all about SSIS in my continuing journey through 31 Days of SSIS. ...
2011-01-25
1,418 reads
Being average is dull. Are we consistently producing quality that we can be proud of, each and every time? So...
2011-01-25
576 reads
Two Fridays ago, Sean and I sat down for our weekly DBAs@Midnight webshow* as usual. Unusually, we were expecting an out-of-town...
2011-01-24
584 reads
[Commence whine-a-thon, thinly veiled as an introductory paragraph to a blog.]
As I knew it would, it is getting VERY difficult...
2011-01-24
490 reads
AdvertisementsSQLskills Master Immersion Events 2011 competition
I have completed engineering and my native is M.Uthamasolagan (village near chidambaram ). I have...
2011-01-24
630 reads
It’s just a couple weeks away, on Super Bowl weekend. I can’t believe this is event #60, still in shock...
2011-01-24
819 reads
Corruption is so ugly it gets a lolworm instead of a lolcat.
Let’s make one thing clear from the start:
This Post...
2011-01-24
2,624 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