Answers for "avg of 2 column 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 "SQL"

Browse Popular Code Answers by Language