Results 1 to 3 of 3

Thread: Finding Top Date in MySQL

  1. #1
    Join Date
    Sep 2007
    Posts
    5

    Question Finding Top Date in MySQL

    I am working on an attendance project using MySQL. I am trying to pull data from an attendance table but I need only the latest date that the student has attended. So far I have the following SQL code:
    Code:
    SELECT StudentID, FirstName, LastName, ClassDate
    FROM Students INNER JOIN Attendance USING (StudentID)
    GROUP BY StudentID, ClassDate
    ORDER BY StudentID, ClassDate
    Which returns:
    Code:
    StudentID   FirstName      LastName     ClassDate  
    4           Student        One          2008-04-16 
    5           Student        Two          2008-04-30 
    5           Student        Two          2008-05-04 
    6           Student        Three        2008-05-04 
    6           Student        Three        2008-05-05 
    7           Student        Four         2008-04-30 
    7           Student        Four         2008-05-02 
    7           Student        Four         2008-05-04 
    7           Student        Four         2008-05-09
    Which I would like the following returned:
    Code:
    StudentID   FirstName      LastName     ClassDate  
    4           Student        One          2008-04-16 
    5           Student        Two          2008-05-04 
    6           Student        Three        2008-05-05 
    7           Student        Four         2008-05-09
    Any help is greatly appreciated!!!
    Last edited by mikjall; 05-10-2008 at 05:40 AM.

  2. #2
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    SELECT StudentID, FirstName, LastName, max(ClassDate)
    FROM Students INNER JOIN Attendance USING (StudentID)
    GROUP BY StudentID, FirstName, LastName
    ORDER BY StudentID, FirstName, LastName

  3. #3
    Join Date
    Jun 2004
    Location
    Atlanta and Manhattan
    Posts
    607

    MAX() Does Appear the Best Bet Here ...

    I agree with the use of MAX() here to obtain the most recent date ...

    Good Luck.

    Bill

Posting Permissions

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