Viewing 3 posts - 1 through 3 (of 3 total)
I was reviewing this need once again and find myself on a database that does not support subqueries and cannot get it upgraded at this time.
I have spent the last...
August 29, 2006 at 1:50 pm
#657379
That is exactly right. With the query as it was it only returned 24 rows with a count of 1 for each. The union all did the trick...
October 29, 2003 at 10:03 am
#480148
quote:Perhaps something like this? SELECT c.Item_No, c.Item_YesNo, c.Item_Date FROM CheckList c JOIN (SELECT Item_No, MAX(Item_Date) Item_Date FROM Checklist GROUP BY Item_No)...
quote:
SELECT c.Item_No, c.Item_YesNo, c.Item_Date FROM CheckList c JOIN (SELECT Item_No, MAX(Item_Date) Item_Date FROM Checklist GROUP BY Item_No)...
October 28, 2003 at 4:41 pm
#479995