SQL Saturday 58 – It’s A Wrap! #sqlsat58
It’s Tuesday after PASSMN’s first SQL Saturday event in Minnesota. After a restful weekend, I’m finally starting to completely wind...
2010-11-03
457 reads
It’s Tuesday after PASSMN’s first SQL Saturday event in Minnesota. After a restful weekend, I’m finally starting to completely wind...
2010-11-03
457 reads
About a month ago I read a post by Brad McGehee (Blog | Twitter) concerning a checklist for SQL Server. It...
2010-11-02
579 reads
In less than one week the 2010 PASS Summit begins in Seattle and with each day the excitement and anticipation...
2010-11-02
681 reads
WOW this is the 12th TSQL2Sday albeit this month’s is week early because of the PASS summit next week, so...
2010-11-02
630 reads
Tis the season for voting and SQLServerPedia has thrown out an election as well. The SQLServerPedia awards are under way...
2010-11-02
428 reads
November is upon us and in some areas this also means that the leaves have changed color. With the change...
2010-11-02
635 reads
Time for another T-SQL Tuesday and this time I’ll finish my entry in time. This month we are talking about...
2010-11-02
782 reads
This month T-SQL Tuesday is hosted by Paul Randal (@PaulRandal) and he asks the question, “Why are DBA Skills Necessary?”.
The...
2010-11-02
520 reads
I’m a little later than I had hoped getting this announced, but hopefully not too late! For the past couple...
2010-11-02
427 reads
Quote: “Database stuff, all this programming stuff, is easy. Anyone can do it. That’s why everyone in the company has sa...
2010-11-02
1,112 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