都是 Number 的子类型.
Use the subtypes INTEGER, INT, and SMALLINT to declare integers with a
maximum precision of 38 decimal digits.

解决方案 »

  1.   

    一样的
    SQL> create table t(aaa int,bbb integer);表已创建。SQL> desc t;
     名称                                      是否为空? 类型
     ----------------------------------------- -------- -----------
     AAA                                                NUMBER(38)
     BBB                                                NUMBER(38)SQL>
      

  2.   

    number,dec最大精度是38十进制数
    integer,int,smallint子类型都可存储整数,最大精度为38十进制数