Viewing post 1 (of 2 total)
Hi,
See if this helps, basically the same as above, just lets SQL do the cast.
Create Table Test(Fee money, Paid money)
insert into Test Values(460.00, 457.00)
select (Paid) / (Fee * 1.0) from...
August 27, 2004 at 4:13 am
#520830