NUMBER datatype: PRECISION 5 SCALE 2 : Number « SQL Data Types « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » SQL Data Types » Number 
10. 9. 5. NUMBER datatype: PRECISION 5 SCALE 2
SQL>
SQL> CREATE TABLE precision (
  2     value NUMBER(38,5),
  3     scale NUMBER(10));

Table created.

SQL>
SQL> INSERT INTO precision (value, scale)
  2     VALUES (123450);

row created.

SQL> INSERT INTO precision (value, scale)
  2     VALUES (1234560);

row created.

SQL> INSERT INTO precision (value, scale)
  2     VALUES (123.450);

row created.

SQL> INSERT INTO precision (value, scale)
  2     VALUES (123452);

row created.

SQL> INSERT INTO precision (value, scale)
  2     VALUES (123.452);

row created.

SQL> INSERT INTO precision (value, scale)
  2     VALUES (12.3452);

row created.

SQL> INSERT INTO precision (value, scale)
  2     VALUES (1234.52);

row created.

SQL>
SQL> commit;

Commit complete.

SQL>
SQL> SET SERVEROUTPUT ON
SQL>
SQL> DECLARE
  2     v_integer NUMBER(5);
  3     v_scale_2 NUMBER(5,2);
  4     v_real NUMBER;
  5
  6     CURSOR scale_0_cur
  7     IS
  8        SELECT value
  9        FROM precision
 10        WHERE scale = 0;
 11
 12     CURSOR scale_2_cur
 13     IS
 14        SELECT value
 15        FROM precision
 16        WHERE scale = 2;
 17  BEGIN
 18
 19
 20     DBMS_OUTPUT.PUT_LINE('     ');
 21     DBMS_OUTPUT.PUT_LINE('PRECISION SCALE 2');
 22
 23     OPEN scale_2_cur;
 24
 25     -- Loop through all records that have a scale of 2
 26     LOOP
 27     FETCH scale_2_cur INTO v_real;
 28     EXIT WHEN scale_2_cur%NOTFOUND;
 29
 30     -- Assign different values to the v_scale_2 variable
 31     --  to see how it handles it
 32     BEGIN
 33        DBMS_OUTPUT.PUT_LINE('     ');
 34        DBMS_OUTPUT.PUT_LINE('Assigned: '||v_real);
 35
 36        v_scale_2 := v_real;
 37
 38        DBMS_OUTPUT.PUT_LINE('Stored: '||v_scale_2);
 39     EXCEPTION
 40        WHEN OTHERS
 41        THEN
 42           DBMS_OUTPUT.PUT_LINE('Exception: '||sqlerrm);
 43     END;
 44     END LOOP;
 45
 46     CLOSE scale_2_cur;
 47
 48  END;
 49  /
PRECISION SCALE 2
Assigned: 12345
Exception: ORA-06502: PL/SQL: numeric or value error: number precision too large
Assigned: 123.45
Stored: 123.45
Assigned: 12.345
Stored: 12.35
Assigned: 1234.5
Exception: ORA-06502: PL/SQL: numeric or value error: number precision too large

PL/SQL procedure successfully completed.

SQL>
SQL> drop table precision;

Table dropped.

SQL>
10. 9. Number
10. 9. 1. Number column
10. 9. 2. Plus two number type columns together
10. 9. 3. Compare Number type in where clause
10. 9. 4. NUMBER data type
10. 9. 5. NUMBER datatype: PRECISION 5 SCALE 2
10. 9. 6. NUMBER(4,2) as column type
10. 9. 7. select 5.1d, 42f from dual;
10. 9. 8. Use IN for number value
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.