I have a problem with my mysql query.
My database:
sections
id
section_name
grades
id
user_id
section_id
date
grade
I want my data to be shown like this:
Section_name grade
But i wat want the grade to be the closest to todays date...
This is what i have so far but it doesn't show the latest grade. instead it orders by id (I guess)
SELECT *
FROM
grades,
sections
WHERE
sections.id = grades.section_id
AND
grades.user_id = '.$id.'
GROUP BY grades.section_id
ORDER BY grades.date DESC
EDIT: the $id variable is the user id from a session.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…