Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Help With Decimal Places (please!)

    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...

Viewing post 1 (of 2 total)