sql - Oracle 10g Float format -


How can I return the float / decimal value with the following:

  SELECT 210 FROM DUAL  

... To get:

  210.00  

... instead of < Code> 210 ?

pl / sql oracle 10g

 select  TO_CHAR (210 , '99 9. 9 ') with double;  

More to_char related formats.


Comments

Popular posts from this blog

objective c - iPhone and it's wireless area -

unix - Listing all shared memory segments used by a process on AIX5.3+ -

.net - Self Tracking Entities (STE)'s and partial updates with EF4 and mVC2 -