Viewing post 1 (of 1 total)
with t1 as (select row_number() over (order by quote_date) n
,quote_date
,close_price
from #google_stock)
select a.n
,a.quote_date
,a.close_price
...
February 27, 2012 at 3:21 am
#1451951