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

From ZCubes Wiki
Revision as of 22:54, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div"> REM REM q08.sql REM REM Retrieve the average salary of all female employees. REM SELECT AVG(salary) FROM Employee WH...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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';