tags:

views:

58

answers:

1

I am pulling the following numbers from MS SQL Server:

345 345.6 345.67

How do I pull them so that they look like the following:

345.00 345.60 345.67

What datatype should they be stored as and what is the magic function to pull them?

Thank you.

+1  A: 

Hi

You can use a cast function. Since you are pulling out values of a table, you would be using a select and some thing like the following can be used-

Select CAST(value AS DECIMAL(5,2)) from table

I hope that is what you are looking for.

cheers

Andriyev
Works, thanks a lot!
Eugene