Create Table MyNumericTable ( 
         Field1 Integer   Not Null,
         Field2  Char(10) Not Null,
         Field3 Numeric (15,2) Not Null);Integer整數; char(10) 10位的字段; Numeric(15,2)就是你要的.Not Null 是要該字段必要的