- Apache Derby 教程
- 阿帕奇德比 - 主页
- Apache Derby - 简介
- Apache Derby - 部署模式
- Apache Derby - 环境设置
- Apache Derby - 工具
- Apache Derby - 语法
- Apache Derby - 数据类型
- Apache Derby - 创建表
- Apache Derby - 删除表
- Apache Derby - 插入数据
- Apache Derby - 检索数据
- Apache Derby - 更新数据
- Apache Derby - 删除数据
- Apache Derby -Where 子句
- Apache Derby - GROUP BY 子句
- Apache Derby - 按条款排序
- Apache Derby -having 子句
- 修改表语句
- Apache Derby - 德比索引
- Apache Derby - 程序
- Apache Derby - 架构
- Apache Derby - 触发器
- Apache Derby 有用资源
- Apache Derby - 快速指南
- Apache Derby - 有用的资源
- Apache Derby - 讨论
Apache Derby - 数据类型
数据类型是指定任何对象的数据类型的属性。每个列、变量和表达式都有一个相关的数据类型。您可以在创建表时使用这些数据类型。您可以根据需要为表列选择数据类型。
Derby Server 提供多种数据类型供您使用,如下所列 -
整数数值数据类型
以下是整数数值数据类型的列表 -
数据类型 | 尺寸 | 从 | 到 |
---|---|---|---|
小智 | 2字节 | -32768 | 32767 |
整数 | 4字节 | -2,147,483,648 | 2,147,483,647 |
BIGINT | 8字节 | -9223372036854775808 | 9223372036854775808 |
近似数字数据类型
以下是近似数字数据类型的列表 -
数据类型 | 尺寸 | 从 | 到 |
---|---|---|---|
真实的 | 4字节 | -3.40E+38 | 3.40E+38 |
双精度 | 8字节 | -1.79E+308 | 1.79E+308 |
漂浮 | -1.79E+308 | 1.79E+308 |
精确的数字数据类型
以下是精确数字数据类型的列表 -
数据类型 | 从 | 到 |
---|---|---|
十进制 | -10^38 +1 | 10^38 -1 |
数字 | -10^38 +1 | 10^38 -1 |