Answers for "how to calculate average of 3 columns in mysql"

SQL
1

mysql average of multiple columns

SELECT avg(col1 + col2)
FROM test
WHERE uid=5;
Posted by: Guest on April-17-2020

Code answers related to "how to calculate average of 3 columns in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language