Yurttas/PL/DBL/oracle/F/01/Company-A/q08.sql

From ZCubes Wiki
Jump to navigation Jump to search
1REM
2REM q08.sql
3REM
4REM Retrieve the average salary of all female employees.
5REM
6
7SELECT AVG(salary)
8FROM Employee
9WHERE sex = 'F';