study how to express some SQL query in english------OUT JOIN

来源:互联网 发布:网页美工课程 编辑:程序博客网 时间:2024/06/05 22:45
Challenge:
Let me assume this: we have two tables, one is Regions table with all region information (East, West, etc. ) and we have another table with Sales information. Now, we need to display a report with region information and how many sales conducted in each region with greater than $1000 value in each sale. It sounds simple at the beginning since a Count(*) with Group By can do this trick.

But what if I need to still show the region which does not have any sales greater than $1000 on the report? Using Count(*) itself in the query, the region without any sales greater than $1000 will not show in the query result, period.


<SCRIPT type=text/javascript><!--google_ad_client = "pub-3144922997150829";google_ad_width = 120;google_ad_height = 240;google_ad_format = "120x240_as";google_alternate_ad_url = "http://am.mutube.com/ad/120x240";google_ad_type = "text_image";google_color_border = "FFFFFF";google_color_bg = "FFFFFF";google_color_link = "0000FF";google_color_text = "000000";google_color_url = "008000";//--></SCRIPT><SCRIPT src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type=text/javascript></SCRIPT>

I tried to use some Count() tricks (like Count(NULL), COUNT(1), COUNT(0)) to accomplish this task, but found myself no luck at all. Till I decide to use a more complex SQL query to do a Outer Join with the Count() result query.

Here is what I worked out.

 

 

Solutions:

To help you understand my processes, let me draw these two tables with some dumb data.

The first table is the Region table as the below.

Region_IDRegion_Name
1East
2West
3North
4South

Then we have the Sales table now

Sales_IDCityRegionAmount
1Atlanta15000
2Miami4200
3New York32000
4Los Angeles21500
5San Francisco2700

Now, if we just use a simple Count() query, we will have the following result:

SELECT Region, Count(Amount) AS Total
From Sales
Where Amount > 1000
Group By Region

RegionTotal
11
21
31

As you can tell from the above, the Region ID 4 - South did not show in the result since its sales amount is only $200. But I need to show this region too with 0 as the sales total.

What I need to take care is two details.

  1. First, still use the above sql query as SubQuery to create the Count() sales total table (or view), then use the Region table to Outer Join total table to show region even if its sales amount did not meet the query conditions. In our example, I will use Left Join to do such thing.
  2. Use logic function to show 0 if the value is Null from the outer join tables. In Oracle, it should be NVL, and in Microsoft Access, it will be NZ. For other databases, you can refer to their own manual for the references.

Finally, I will make the query above to the following considering the mentioned two details. This time, I also use Region Name for a good display.

SELECT Region.Region_Name, NVL(SubTotal.Total,0) As SalesTotal
From Region
Left Join
(SELECT Region, Count(Sales.Amount) As Total
From Sales
Where Amount > 1000
Group By Region) SubTotal
On Region.Region_id = SubTotal.Region

With the SQL query above, we have the following result:

Region_NameSalesTotal
East1
West1
North1
South0

 

 

Great! We had it! Of course, my initial challenge was NOT such dumb Sales and Region tables. I just used them for the simplicity purpose on my blog. But we still can get it with the SubQuery strategy above. So even you have more complex reports requirement, you still can use the above as your starting point.

Have fun on SQLing.