PASS Summit 2011 Session Preference Survey
PASS has added a new feature to the session selection process for the PASS Summit 2011, which they are calling...
2011-05-11
607 reads
PASS has added a new feature to the session selection process for the PASS Summit 2011, which they are calling...
2011-05-11
607 reads
A quick tip for you: Ever get some SQL or MDX sent to you in an email, or copied from a...
2011-05-11
678 reads
Just wanted to post a quick note/invitation to everyone to come join us on Thursday, May 12th from 5:45-7:00 for...
2011-05-11
370 reads
Here’s your chance to give the program committee your thoughts on which sessions should be selected for the big show....
2011-05-11
555 reads
Yes, this is absolutely a shameless post for self-promotion. However, since potential attendees get to offer input into what sessions...
2011-05-11
965 reads
SSWUG.org is hosting a free SQL Server Analysis Services expo on May 20, 2011. Register today to reserve your spot.
If...
2011-05-11
815 reads
Inevitably, even if we work for ourselves, we get frustrated with our workplace. This is true of all aspects of...
2011-05-11
3,033 reads
This year the Program Committee decided to open up the selection process to the community. I'm anxious to see how...
2011-05-11
861 reads
(TSQL Tuesday on Wednesday! - Apologies for the late entry - better late than never)
Today’s topic is CTE’s.Scientifically speaking, solids mostly expand...
2011-05-11
2,023 reads
This is a quick reminder of the upcoming May meeting for the Las Vegas SQL Server Users Group. We will be meeting on May 12, 2011 at the usual...
2011-05-10
9 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...
WA CS 082225313145 WWH2+WP2, Jl. Pangeran Diponegoro No.54, Tamanan, Kec. Tulungagung, Kabupaten Tulungagung, Jawa...
Comments posted to this topic are about the item OUTER APPLY Fundamentals: Part 2
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