Watch the Growth of Walmart and Sam’s Club Across America #bigdata
This is pretty amazing. After 1970 the grow rate is astronomical for Walmart. You have got to watch this. Pretty...
2014-02-07
421 reads
This is pretty amazing. After 1970 the grow rate is astronomical for Walmart. You have got to watch this. Pretty...
2014-02-07
421 reads
FEATURED POST BY: Quentin Clark, Corporate Vice President, The Data Platform Group, Microsoft Corporation
If you follow Microsoft’s data platform work,...
2014-02-07
1,529 reads
On February 5, 2014 business intelligence experts took to the virtual stage for the 24 Hours of PASS: Business Analytics Edition to...
2014-02-06
742 reads
2014-02-06
383 reads
I am about to set sail on a new venture with my next official whistle stop. This year has been plenty full of whistle stops and I plan on...
2014-02-06
5 reads
I am about to set sail on a new venture with my next official whistle stop. This year has been...
2014-02-06
825 reads
I learned something new today while I was listening to one of the courses on corruption authored by the master,...
2014-02-06
1,581 reads
I improved the file-level latency query this month and made some other small improvements to a few other queries. Rather...
2014-02-06
1,162 reads
I am humbled and honored (and more than a little horrified) to be on this list of the Best of...
2014-02-06
704 reads
This is part of a series where I set up a virtual lab for testing and misc work. The other...
2014-02-06
1,297 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