Forum Moderators: open
Example
DATE--------ID------NAME------COLOR
2008-01-01---1------John------Red
2008-01-02---1------John------Green
2008-01-03---1------John------Blue
2008-01-05---2------Paul------Red
2008-01-06---2------Paul------Green
2008-01-07---2------Paul------Blue
Based on the above how would I select the first record entered for each ID so I get the following result?
DATE--------ID------NAME------COLOR
2008-01-01---1------John------Red
2008-01-05---2------Paul------Red
Any help would be really appreciated.