Hi All,
Is there a way to insert/update a datetime value (getdate()) into a temp table created like the following:
select id, null as testdate
into #temp_table
and then later statement:
update #temp_table
set testdate=getdate()
i get error: "cannot convert datetime into int..."
Thanks, rod.