Table with three fields
id transdate transamt
Multiple transaction records with same ID and contribution date
and countribution amt
Need to place Unique ID's in one record and supply the following
unique id's,
oldest date,
newest date,
oldest amt,
newest amt,
transaction count
Transaction count contains the count of transactions for each ID
I would like to use one sql select if possible.
id transdate transamt
Multiple transaction records with same ID and contribution date
and countribution amt
Need to place Unique ID's in one record and supply the following
unique id's,
oldest date,
newest date,
oldest amt,
newest amt,
transaction count
Transaction count contains the count of transactions for each ID
I would like to use one sql select if possible.