Results 1 to 8 of 8

Thread: Query to find schools with only boy/girls

Threaded View

  1. #1
    Join Date
    Jun 2007
    Posts
    4

    Query to find schools with only boy/girls

    I've been struggling with this one for quite some time now and would appreciate some help:-

    I'm trying to get a list of schools that only has male students. the closest I have so far:-


    SELECT Schools.SchoolName, FORUM_MEMBERS.M_SEX , COUNT(Schools.SchoolName) AS no_of_students
    FROM Schools
    INNER JOIN FORUM_MEMBERS ON (Schools.SchoolID = FORUM_MEMBERS.SchoolID)
    WHERE (FORUM_MEMBERS.UserType=4)
    GROUP BY Schools.SchoolName, FORUM_MEMBERS.M_SEX
    ORDER BY Schools.SchoolName, FORUM_MEMBERS.M_SEX;

    The result is a list of schools:-
    SchoolName, M_SEX, no_of_students
    school 1, Male, 11
    school 1, Female, 20
    school 2, Male, 8
    school 2, Female, 1
    school 3, Male, 12
    school 4, Male, 14
    school 5, Male, 8
    school 5, Female, 1

    But what I really need is schools with only male students:-
    SchoolName, M_SEX, no_of_students
    school 3, Male, 12
    school 4, Male, 14

    Many Thanks
    Last edited by retrib; 08-16-2007 at 10:54 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •