Index | Home | Forums
Oracle PL/SQL Example 3-8 Type Compatibility With the NUMBER Datatype

Example 3-8 Type Compatibility With the NUMBER Datatype

DECLARE 
   SUBTYPE Accumulator IS NUMBER;
   amount NUMBER(7,2);
   total  Accumulator;
BEGIN
   amount := 10000.50;
   total := amount;
END;
/


This page was created by oracleabc.com on Feb 23,2008 00:09:02
General comments and questions regarding this document should be sent by email to info@oracleabc.com or post your comments here