Answers for "mysql calculate average of two column"

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 "mysql calculate average of two column"

Code answers related to "SQL"

Browse Popular Code Answers by Language