shteev
Programmer
- Jul 15, 2003
- 42
Hi. I have an Access database of cards for a trading card game, some of which have identical names, although their other fields may not be identical.
Example
NAME - COST - CARD TEXT - YEAR PRINTED
Fog - G - No creatures deal damage in combat this turn - 1995
Fog - G - Creatures deal no combat damage this turn - 1997
I want to write a query which, for each card which has multiple printings, all but the most recent. i.e, in this case:
Fog - G - Creatures deal no combat damage this turn - 1997
I want the query to return all the fields of my records, and so I'm having difficulty seeing how I can do this with functions like DISTINCT or GROUP BY.
Example
NAME - COST - CARD TEXT - YEAR PRINTED
Fog - G - No creatures deal damage in combat this turn - 1995
Fog - G - Creatures deal no combat damage this turn - 1997
I want to write a query which, for each card which has multiple printings, all but the most recent. i.e, in this case:
Fog - G - Creatures deal no combat damage this turn - 1997
I want the query to return all the fields of my records, and so I'm having difficulty seeing how I can do this with functions like DISTINCT or GROUP BY.