Answers for "which sql function is used to get the average value of any column?"

SQL
0

how to find average in sql

SELECT FIRST_NAME FROM EMPLOYEES
WHERE SALARY = (SELECT AVG(SALARY) FROM EMPLOYEES);
Posted by: Guest on November-27-2020

Code answers related to "which sql function is used to get the average value of any column?"

Code answers related to "SQL"

Browse Popular Code Answers by Language