Users and experts,
I have a pretty unusual select query I would like to build.
In a table I have Amount field and EventDate field. I need the number of records to be as the sum of Amount field, in the following way:
Original Table:
Amount EventDate
1 8/10/2002
1 9/10/2002
3 10/10/2002
2 11/10/2002
4 12/10/2002
( 11)
Select Query:
Amount EventDate
1 8/10/2002
1 9/10/2002
1 10/10/2002
1 10/10/2002
1 10/10/2002
1 11/10/2002
1 11/10/2002
1 12/10/2002
1 12/10/2002
1 12/10/2002
1 12/10/2002
( 11)
Any ideas how this is possible to achive?
Thanks for the help.
I have a pretty unusual select query I would like to build.
In a table I have Amount field and EventDate field. I need the number of records to be as the sum of Amount field, in the following way:
Original Table:
Amount EventDate
1 8/10/2002
1 9/10/2002
3 10/10/2002
2 11/10/2002
4 12/10/2002
( 11)
Select Query:
Amount EventDate
1 8/10/2002
1 9/10/2002
1 10/10/2002
1 10/10/2002
1 10/10/2002
1 11/10/2002
1 11/10/2002
1 12/10/2002
1 12/10/2002
1 12/10/2002
1 12/10/2002
( 11)
Any ideas how this is possible to achive?
Thanks for the help.