MySQL promedio de múltiples columnas
SELECT avg(col1 + col2)
FROM test
WHERE uid=5;
Enthusiastic Elephant
SELECT avg(col1 + col2)
FROM test
WHERE uid=5;