I have a table with the following pertinant fields:
completed
quarter
For each quarter there will be 10 records (40 records per year). A date will be inserted when each of the 10 requirements are fullfiled.
What I want to do is get the last date the 10 requirements are completed so I can see when the querterly is completed.
1. completed will always be a date
2. quarter will look like "1:2005", "2:2005", "3:2005", "4:2005", "1:2006"
So I want to:
1. Select quarterly
2. Select completed
3. Select distinct quarterly where MAX completed
Problem is "MAX" only returns 1 record, I want to return 1 record for each distince quarter.
completed
quarter
For each quarter there will be 10 records (40 records per year). A date will be inserted when each of the 10 requirements are fullfiled.
What I want to do is get the last date the 10 requirements are completed so I can see when the querterly is completed.
1. completed will always be a date
2. quarter will look like "1:2005", "2:2005", "3:2005", "4:2005", "1:2006"
So I want to:
1. Select quarterly
2. Select completed
3. Select distinct quarterly where MAX completed
Problem is "MAX" only returns 1 record, I want to return 1 record for each distince quarter.