SQLSaturday Orlando Marketing Plan-Part 47
Notes:
We sent out a final you haven’t paid for lunch reminder on Wed, asked for a reply if they were...
2014-09-25
475 reads
Notes:
We sent out a final you haven’t paid for lunch reminder on Wed, asked for a reply if they were...
2014-09-25
475 reads
Registration count after some cancellations now at 577, way above my goal of 500. We’ve decided not to spend on...
2014-09-24
505 reads
I’ve wanted to do this for a while, decided to make the time commitment and see what happens. See the...
2014-09-22
542 reads
It’s Saturday a week out and I’m trying to finish up messages for the week. A lot to send this...
2014-09-20
713 reads
Ever since SQLSaturday #1 our venue has been Seminole State College (Seminole Community College back then), provided graciously and perhaps...
2014-09-19
753 reads
More notes:
Registration at 520. Not as big a bump this week as we expected, probably due to the message going...
2014-09-18
519 reads
A friend recently asked me about my involvement with PASS, and that lead to the two questions in the title....
2014-09-17
763 reads
I’ve got most of the messages up through Sep 27th drafted. Still need to tweak a couple, but close to...
2014-09-16
545 reads
We’ve just wrapped up the interviews and I wanted to jot down a few thoughts on what I’ve seen from...
2014-09-15
506 reads
Reg count at 479. Looking very good for hitting 500!First sponsor sent out a geo-targeted message for us, another one...
2014-09-12
629 reads
How can you achieve good enough without compromising the process/product? In the world of...
By Patrick
One of my customers recently wanted to rename each of the SQL audit files...
The post The pros and cons of self-service BI: What every industry leader should...
Comments posted to this topic are about the item What's New for the Microsoft...
Comments posted to this topic are about the item Using Outer Joins
I have this data in a SQL Server 2019 database:
Customer table CustomerID CustomerName 1 Steve 2 Andy 3 Brian 4 Allen 5 Devin 6 Sally OrderHeader table OrderID CustomerID OrderDate 1 1 2024-02-01 2 1 2024-03-01 3 3 2024-04-01 4 4 2024-05-01 6 4 2024-05-01 7 3 2024-06-07 8 2 2024-04-07I want a list of all customers and their order counts for a period of time, including zero orders. If I run this query, how many rows are returned?
SELECT c.CustomerName, COUNT(oh.OrderID) FROM dbo.Customer AS c LEFT JOIN dbo.OrderHeader AS oh ON oh.CustomerID = c.CustomerID WHERE oh.Orderdate > '2024/04/01' GROUP BY c.CustomerNameSee possible answers