This also works
declare @temp1 decimal(6,2),
@temp2 decimal(6,2)
set @temp1=50
set @temp2=100
create table #test (Num decimal(6,2))
insert #test (num)
select @temp1 / @temp2
select * from #test
Although is admittedly a little more verbose than the other solution. Crystal
crystalized_s@yahoo.com
--------------------------------------------------
Experience is one thing you can't get for nothing.
-Oscar Wilde