Malcolm - are you out there?
I was hoping you could help me with running totals. I read your FAQ but couldn't seem to make it meet my needs. I'm either completely missing the boat (entirely possible X-) ) or maybe it just can't be done the way I'm trying to use it. Is it possible to return a running total in a select statement like this (without cursors or temp tables):
select unique_id,
numeric_value,
<running total of numeric value>
from test_table
Thanks for your help.
I was hoping you could help me with running totals. I read your FAQ but couldn't seem to make it meet my needs. I'm either completely missing the boat (entirely possible X-) ) or maybe it just can't be done the way I'm trying to use it. Is it possible to return a running total in a select statement like this (without cursors or temp tables):
select unique_id,
numeric_value,
<running total of numeric value>
from test_table
Thanks for your help.