I have the following data:
id date amount chequeid transid
1 22/05/04 10 1 001
1 22/05/04 15 1 002
1 22/05/04 30 2 003
1 23/05/04 40 3 004
I want to return 3 columns i.e. group all the chequeid that are the same so it will return then following
id date amount chequeid transid
1 22/05/04 25 1 002
1 22/05/04 30 2 003
1 23/05/04 40 3 004
Any idea's??
Thanks
id date amount chequeid transid
1 22/05/04 10 1 001
1 22/05/04 15 1 002
1 22/05/04 30 2 003
1 23/05/04 40 3 004
I want to return 3 columns i.e. group all the chequeid that are the same so it will return then following
id date amount chequeid transid
1 22/05/04 25 1 002
1 22/05/04 30 2 003
1 23/05/04 40 3 004
Any idea's??
Thanks