类型名称 | python类型 | 描述 | ||
---|---|---|---|---|
Integer | int | 常规整形,通常为32位 | ||
SmallInteger | int | 短整形,通常为16位 | ||
BigInteger | int或long | 精度不受限整形 | ||
Float | float | 浮点数 | ||
Numeric | decimal.Decimal | 定点数 | ||
String | str | 可变长度字符串 | ||
Text | str | 可变长度字符串,适合大量文本 | ||
Unicode | unicode | 可变长度Unicode字符串 | ||
Boolean | bool | 布尔型 | ||
Date | datetime... |