Jason Tan wrote:
>
>
>If you want row by row averages try this:
>
>select (col1+col2+col3)/3 from table;
>
>If you wnat to average several columns over the whole table this seems to
>work:
>
>select avg(col1+col2+col3) from table;
Watch out for NULL values when doing this. x + x + NULL = NULL, not 2x
You might do better to do:
SELECT avg(col1) + avg(col2) + avg(col3)
or
SELECT avg(COALESCE(col1, 0) + COALESCE(col2, 0) + COALESCE(col3,0))
(the two are not equivalent).
--
Oliver Elphick Oliver.Elphick@lfix.co.uk
Isle of Wight http://www.lfix.co.uk/oliver
PGP: 1024R/32B8FAA1: 97 EA 1D 47 72 3F 28 47 6B 7E 39 CC 56 E4 C1 47
GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839 932A 614D 4C34 3E1D 0C1C
========================================
"Behold, I stand at the door, and knock; if any man
hear my voice, and open the door, I will come in to
him, and will sup with him, and he with me."
Revelation 3:20