Hack 77. Fill in Missing Values in a Pivot Table

Microsoft Excel can generate pivot tables. You can't produce a pivot table using SQL alone, but you can use SQL to help Excel do a better job by supplying missing values.

A pivot table displays counts, sums, or averages arranged in a grid. You can't produce a pivot table automatically in SQL because the column headings, and indeed the number of columns, depend on the data in the table. You can build a table with column headings showing aggregates of different values [Hack #51], but you cannot have the columns generated automatically in SQL.

Creating a pivot table in Excel is not difficult, but it is time consuming. This is especially true if you are concerned with the format of your reports; getting the font sizes and the colors just the way you want them can be labor intensive. However, you can create a pivot table with a link (the data source) to a database table or query. This means that you can refresh the report to reflect the latest data with a single click.

Given a list of incidents, you might want to show severity broken down by location, as in Table 10-1. You could also show cause broken down by severity, or location broken down by cause.

Table 10-1. The incident table

seq severity location cause
1 Major North Accident
2 Medium North Fraud
3 Minor South Fraud
4 Minor South Accident
5 Minor West Accident

You can use Excel to generate a pivot table from the raw data, as shown in Figure 10-1.

Figure 10-1. Excel pivot table based on incident, showing severity broken down by location

Excel has a PivotTable Wizard that takes you through the process step by step. The wizard, shown in Figure 10-2, includes options to pull the source data from an ODBC source, and that includes pretty much every SQL product available. If you want to use this with MySQL, be sure to get the MySQL ODBC driver from http://dev.mysql.com/downloads/connector/odbc.

Figure 10-2. PivotTable Wizard

The wizard is intimidating at first, but with a little experimentation you can use it to produce useful business intelligence. The real value to this kind of report comes when the data is updated regularly and you can compare the most recent data with corresponding historical reports. This means that you have to produce the reports regularly; that is much easier if you automate the process.

10.1.1. Include Missing Values

In Figure 10-1 you might notice that the location East is missing. By chance, no rows in the supplied data set involve a location of East, so Excel does not show the missing column.

Missing columns or rows matter because the tables are particularly useful when you look at two versions side by side. When you compare this month's table with last month's table, the missing rows or columns make it harder to spot the patterns. In addition, the fact that zero events occurred in the East is important, possibly crucial, information.

Let's assume that you have a table, shown in Table 10-2, of all possible locations; this is likely, as the location column ought to reference this list as a foreign key.

Table 10-2. The location table

Location
North
East
South
West
Central

An INNER JOIN to this table is redundant because it contains no data other than the ID of the location. However, a RIGHT OUTER JOIN to this table ensures that every location will be included:

mysql> SELECT seq, severity, location.id AS location, cause
 -> FROM incident RIGHT OUTER JOIN location
 -> ON (location=location.id);
+------+----------+----------+----------+
| seq | severity | location | cause |
+------+----------+----------+----------+
| NULL | NULL | Central | NULL |
| NULL | NULL | East | NULL |
| 1 | Major | North | Accident |
| 2 | Medium | North | Fraud |
| 3 | Minor | South | Fraud |
| 4 | Minor | South | Accident |
| 5 | Minor | West | Accident |
+------+----------+----------+----------+

You could also specify the FROM clause as FROM location LEFT OUTER JOIN incident ON (location=location.id).

The missing locations have been included in the output, and the corresponding column will show up in the pivot table (see Figure 10-3). In addition, the NULL values in the seq column will translate to blank cells in Excel and they will not contribute to the count in the pivot table.

Figure 10-3. Pivot table with missing columns showing

Using a RIGHT OUTER JOIN ensures that the locations that do not have any data still show up in the pivot table.

Now consider the severity values. The output in Figure 10-3 includes Minor, Medium, and Major severity levels. But a severity level of Mega is also a possibility; it happens that no Mega event is in this particular data set. If you want to include Mega in your output, another RIGHT OUTER JOIN will not work.

Look at what happens if you simply RIGHT OUTER JOIN the severity table (the severity table includes all four rows: Minor, Medium, Major, and Mega):

mysql> SELECT seq, severity.id AS severity
 -> , location.id AS location
 -> , cause
 -> FROM incident RIGHT OUTER JOIN location
 -> ON (location=location.id)
 -> RIGHT OUTER JOIN severity
 -> ON (severity=severity.id)
 -> ;
+------+----------+----------+----------+
| seq | severity | location | cause |
+------+----------+----------+----------+
| 1 | Major | North | Accident |
| 2 | Medium | North | Fraud |
| NULL | Mega | NULL | NULL |
| 3 | Minor | South | Fraud |
| 4 | Minor | South | Accident |
| 5 | Minor | West | Accident |
+------+----------+----------+----------+
6 rows in set

You now have the Mega severity level included as required. But you have lost the locations East and Central. The first JOIN included the missing locations, with a NULL value in the severity column. The second RIGHT OUTER JOIN strips these rows out because a NULL in the left result set will not make it through the right join.

A FULL OUTER JOIN (available in SQL Server, Oracle, and PostgreSQL) will solve your problems. The FULL OUTER JOIN will include rows that have a NULL in the JOIN column in either of the tables being joined. Replacing the RIGHT OUTER JOIN with FULL OUTER JOIN in the preceding example produces all eight rows required.

Here is the FULL OUTER JOIN working with all four tables. Also included is the missing cause. The Process value is a possible cause that happened to not show up in the incident table:

SQL> SELECT seq, severity.id AS severity
 2 , location.id AS location
 3 , cause.id AS cause
 4 FROM incident FULL OUTER JOIN location
 5 ON (location=location.id)
 6 FULL OUTER JOIN severity
 7 ON (severity=severity.id)
 8 FULL OUTER JOIN cause
 9 ON (cause =cause.id);

SEQ SEVERITY LOCATION CAUSE
--- ---------- ---------- ----------
 1 Major North Accident
 2 Medium North Fraud
 3 Minor South Fraud
 4 Minor South Accident
 5 Minor West Accident
 East
 Central
 Mega
 Process

9 rows selected.

This output is perfect for the pivot table. It means that all possible columns and rows will show up on the reports. The extra rows that you introduce with the FULL OUTER JOINs will not affect the totals because a NULL value in the seq column ensures that they will not contribute to the count.

10.1.2. Use a Union

There is another approach to including the missing rows. This works with SQL Server, Oracle, and PostgreSQL, as well as MySQL and Access.

You can create a UNION that includes the incident table together with each of three tables: location, severity, and cause. For the three extra tables you must pad the result set using NULL values. This means that your output includes additional rows for locations, such as North and South, which showed up in the incident table anyway. The extra rows do not matter because they have a NULL in the seq column and will not contribute to the count. A pivot table based on this data set will include all of the required columns or rows for all three quantities: location, severity, and cause:

mysql> SELECT seq, severity, location, cause FROM incident
 -> UNION
 -> SELECT NULL,id, NULL, NULL FROM severity
 -> UNION
 -> SELECT NULL,NULL, id, NULL FROM location
 -> UNION
 -> SELECT NULL,NULL, NULL, id FROM cause;
+------+----------+----------+----------+
| seq | severity | location | cause |
+------+----------+----------+----------+
| 1 | Major | North | Accident |
| 2 | Medium | North | Fraud |
| 3 | Minor | South | Fraud |
| 4 | Minor | South | Accident |
| 5 | Minor | West | Accident |
| NULL | Major | NULL | NULL |
| NULL | Medium | NULL | NULL |
| NULL | Mega | NULL | NULL |
| NULL | Minor | NULL | NULL |
| NULL | NULL | Central | NULL |
| NULL | NULL | East | NULL |
| NULL | NULL | North | NULL |
| NULL | NULL | South | NULL |
| NULL | NULL | West | NULL |
| NULL | NULL | NULL | Accident |
| NULL | NULL | NULL | Fraud |
| NULL | NULL | NULL | Process |
+------+----------+----------+----------+


SQL Fundamentals

Joins, Unions, and Views

Text Handling

Date Handling

Number Crunching

Online Applications

Organizing Data

Storing Small Amounts of Data

Locking and Performance

Reporting

Users and Administration

Wider Access

Index



SQL Hacks
SQL Hacks
ISBN: 0596527993
EAN: 2147483647
Year: 2004
Pages: 147

Flylib.com © 2008-2020.
If you may any questions please contact us: flylib@qtcs.net