From: LAM on
Please suggest me what kind of data type can I use in SQLServer that
supports numbers whith two decimal digits.

Thanks

LAM


From: Gert-Jan Strik on
LAM wrote:
>
> Please suggest me what kind of data type can I use in SQLServer that
> supports numbers whith two decimal digits.
>
> Thanks
>
> LAM

There is more than one option, but my first choice would be to use
decimal. For example decimal(12,2). You can check Books Online for more
details.
--
Gert-Jan