Yurttas/PL/DBL/mysql/F/01/00/Company-A/q04.sql

Revision as of 16:16, 3 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">/* REM REM q04.sql REM REM For each project, list the project name and REM the total hours per week (by all employees)...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1/*
 2REM
 3REM q04.sql
 4REM
 5REM For each project, list the project name and
 6REM the total hours per week (by all employees) spent
 7REM on that project.
 8REM
 9*/
10
11\. set-db.sql
12
13SELECT pname, SUM(hours)
14FROM Project, WorksOn
15WHERE pnumber = pno
16GROUP BY pname;