I have the following database schema:

table courses:
id
tutor_id
title



table course_categories:
    id
    category_id
    course_id

table categories:
    id
    name

table tutors:
    id
    name

table subscribers:
    id
    course_id
    user_id

I need to make 1 sql to get a course with all it's categories, and the tutor for that course and the number of subscribers for that course. Can this be done in 1 query? Should this be done using stored procedures?

link|improve this question

45% accept rate
4  
whathaveyoutried.com – Curt Feb 10 at 10:00
1  
No, it should not be done with stored procedures. Those are used for updating data, not selecting it. – troelskn Feb 10 at 10:01
@troelskn are you serious? yes you can do it with a single query, using JOINs (you'll need more than one). show us your attempts. – vulkanino Feb 10 at 10:03
feedback

2 Answers

up vote 4 down vote accepted

With this query you get what you want:

select co.title as course,
       ca.name as category,
       t.name as tutor,
       count(s.*) as total_subscribers
from courses co
inner join course_categories cc on c.id = cc.course_id
inner join categories ca on cc.category_id = ca.id
inner join tutors t on co.tutor_id = t.tutor_id
left join subscribers s on co.id = s.course_id
where co.title = 'Cat1'
group by co.title, ca.name, t.name

I used left join on subscribers because there might be no one for a given course. I'm assuming that all the other tables have data on it for every course, categorie and tutor. If not, you can user left join as well but then you'll have data with null.

link|improve this answer
thank you, how can I filter the data to get something like Course - Cat1, Cat2, ... now I get 2 rows like Course-Cat1 and Course-Cat2 – Mythriel Feb 10 at 10:18
@VariuSergiu I've edit my answer. just add a where clause. I'm assuming Cat1 is the title of a course. – aF. Feb 10 at 10:22
feedback

It can be done. You need to look up select and the use of join. See select and join to help complete the assignment

link|improve this answer
2  
and group by too – Ramesh Soni Feb 10 at 10:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.