Mega Code Archive

 
Categories / Oracle PLSQL / Data Type
 

Use ANSI Data Types when creating a table

SQL> SQL> create table foo (   2         a   integer,   3         b   dec( 9, 2 ),   4         c   character varying( 30 ),   5         d   national char( 3 )   6      ); Table created. SQL> SQL> drop table foo; Table dropped. SQL>