Below are two tables, one contains the interest rate on a given day.
The columns Settle and Account provide a unique key for the Rate.
The second table Item contains no unique key.
RATES
Settle                Account        Rate
01/06/1998        Pipe_A        5
02/06/1998        Pipe_A        6
03/06/1998        Pipe_A        7
04/06/1998        Pipe_A        8
01/06/1998        Pipe_B        1
02/06/1998        Pipe_B        2
03/06/1998        Pipe_B        3
04/06/1998        Pipe_B        4
ITEMS
Today                Account        Amount
01/06/1998        Pipe_A        1
03/06/1998        Pipe_A        3
01/06/1998        Pipe_B        10
03/06/1998        Pipe_B        11
03/06/1998        Pipe_B        11
05/06/1998        Pipe_B        -2
Below is the result of the SQL that I would like
Note Total_Amount is a cumulative to date balance
So [03/06/1998        Pipe_A        4] is 1+3
Note there is no Rate for 05/06/1998
JOIN
Today                Account        Total_Amount        Rate
01/06/1998        Pipe_A        1                5
03/06/1998        Pipe_A        4                7
01/06/1998        Pipe_B        10                1
03/06/1998        Pipe_B        22                3
05/06/1998        Pipe_B        20                4
Anybody know who to do this ?
Cheers.
The columns Settle and Account provide a unique key for the Rate.
The second table Item contains no unique key.
RATES
Settle                Account        Rate
01/06/1998        Pipe_A        5
02/06/1998        Pipe_A        6
03/06/1998        Pipe_A        7
04/06/1998        Pipe_A        8
01/06/1998        Pipe_B        1
02/06/1998        Pipe_B        2
03/06/1998        Pipe_B        3
04/06/1998        Pipe_B        4
ITEMS
Today                Account        Amount
01/06/1998        Pipe_A        1
03/06/1998        Pipe_A        3
01/06/1998        Pipe_B        10
03/06/1998        Pipe_B        11
03/06/1998        Pipe_B        11
05/06/1998        Pipe_B        -2
Below is the result of the SQL that I would like
Note Total_Amount is a cumulative to date balance
So [03/06/1998        Pipe_A        4] is 1+3
Note there is no Rate for 05/06/1998
JOIN
Today                Account        Total_Amount        Rate
01/06/1998        Pipe_A        1                5
03/06/1998        Pipe_A        4                7
01/06/1998        Pipe_B        10                1
03/06/1998        Pipe_B        22                3
05/06/1998        Pipe_B        20                4
Anybody know who to do this ?
Cheers.
Comment