TO_CHAR(12345.67, '99999.99EEEE'): scientific notation : Numeric Formatting « Data Type « Oracle PL / SQL

Home
Oracle PL / SQL
1.Aggregate Functions
2.Analytical Functions
3.Char Functions
4.Constraints
5.Conversion Functions
6.Cursor
7.Data Type
8.Date Timezone
9.Hierarchical Query
10.Index
11.Insert Delete Update
12.Large Objects
13.Numeric Math Functions
14.Object Oriented Database
15.PL SQL
16.Regular Expressions
17.Report Column Page
18.Result Set
19.Select Query
20.Sequence
21.SQL Plus
22.Stored Procedure Function
23.Subquery
24.System Packages
25.System Tables Views
26.Table
27.Table Joins
28.Trigger
29.User Previliege
30.View
31.XML
Oracle PL / SQL » Data Type » Numeric Formatting 
TO_CHAR(12345.67, '99999.99EEEE'): scientific notation


SQL>
SQL>
SQL> SELECT TO_CHAR(12345.67'99999.99EEEE') FROM dual;

TO_CHAR(12
----------
  1.23E+04

SQL>
SQL>

           
       
Related examples in the same category
1.Number Formatting
2.TO_CHAR(12345.67, '99999V99'): shift specified number of digits
3.TO_CHAR(12345.67, 'U99,999.99')
4.TO_CHAR(12345.67, '99999D99'): decimal point
5.TO_CHAR(12345.67, 'C99,999.99')
6.TO_CHAR(0.67, 'B9.99')
7.TO_CHAR(12345.67, '$99,999.99')
8.TO_CHAR(12345.67, '99,999.9900')
9.TO_CHAR(12345.67, '099,999.99')
10.TO_CHAR(-12345.67, '99,999.99') (2)
11.TO_CHAR(12345.67, '99999G99'): group separator
12.TO_CHAR(12345.67, 'TM')
13.TO_CHAR(2007, 'RN')
14.TO_CHAR(-12345.67, '99,999.99PR'): negative value in angle brackets
15.TO_CHAR(12345.67, 'L99,999.99' ): currency symbol
16.TO_CHAR(0012345.6700, 'FM99999.99')
17.TO_CHAR(-12345.67, '99,999.99MI')
18.TO_CHAR(product_price, '$9,999.00')
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.