Enter the following SQL Query or copy the query from the /home/oracle/Desktop/solutions/apexp2_lab/chart.txt file. Then click Next.
select null link,
p.project_name label,
t.task_count value
from (select project_id,
count(*) task_count
from tasks
group by project_id) t,
projects p
where t.project_id = p.project_id
No comments:
Post a Comment