I have a MySQL table with 5 columns to store various values. For each record in the table the 5 columns store a single value (one of about 15). Here's an example of the structure:
| COL1 | COL2 | COL3 | COL4 | COL5 |
|------|------|------|-------|-------|
| val1 | val3 | val8 | val11 | val14 |
| val2 | val3 | val5 | val9 | val12 |
| val1 | val2 | val6 | val14 | val15 |
| val3 | val5 | val9 | val10 | val12 |
| val2 | val4 | val7 | val11 | val14 |
I'd like to create a query that sums the unique values across each of those 5 columns. The result should show total number of times val1, val2, val3, etc are present across the 5 columns.
Ideally the result would be structured as:
val | total
_____________________
val1 | 34
val2 | 12
val3 | 23
val4 | 14
val5 | 21
etc | etc
Thanks in advance for the help, much appreciated.
One way: SQL Fiddle
Or another: SQL Fiddle