I have a table:
ColProduct ColDate ColSyntheticID
300 2/13/01 1
300 2/14/01 2
300 2/15/01 3
400 11/3/99 4
400 11/4/99 5
400 11/7/99 6
700 2/11/00 7
700 2/19/00 8
700 2/21/00 9
I want to write a select statement on this table that returns the lowest date for each ColProduct:
ColProduct ColDate
300 2/13/01
400 11/3/99
700 2/11/00
Is this possible? I was thinking something like:
'Select Distinct Max(ColDate), ColProduct' but that is not working for me. Is this possible in an Access Query? Quick reply would be greatly appreciated -- thanks! -Brad
ColProduct ColDate ColSyntheticID
300 2/13/01 1
300 2/14/01 2
300 2/15/01 3
400 11/3/99 4
400 11/4/99 5
400 11/7/99 6
700 2/11/00 7
700 2/19/00 8
700 2/21/00 9
I want to write a select statement on this table that returns the lowest date for each ColProduct:
ColProduct ColDate
300 2/13/01
400 11/3/99
700 2/11/00
Is this possible? I was thinking something like:
'Select Distinct Max(ColDate), ColProduct' but that is not working for me. Is this possible in an Access Query? Quick reply would be greatly appreciated -- thanks! -Brad