mysql average of multiple columns

Solutions on MaxInterview for mysql average of multiple columns by the best coders in the world

showing results for - "mysql average of multiple columns"
Nohlan
17 Mar 2020
1SELECT avg(col1 + col2)
2FROM test
3WHERE uid=5;