1。oracle数据库中只有number类型
2。是
3。都可以。

解决方案 »

  1.   

    1 numeric 是 number 的一种子类型,用户表示定点数Use the subtypes DEC, DECIMAL, and NUMERIC to declare fixed-point numbers with
    a maximum precision of 38 decimal digits.2 Number(1,0)最多能表示的数字范围为-9至93 如果合适的话用 SIGNTYPE 类型,表示范围为-1, 0, and 1SIGNTYPE lets you restrict an integer variable to the values -1, 0, and 1, which is useful in programming tri-state logic.
      

  2.   

    1.在oracle中用number(m,n)来处理应用程序定义的int,integer,numeric 等数据类型.2.number(m,n)  数字,长度m,小数位n3.建议用number.