数值
(资料图)
tinyint
微小的数据 [1字节]
smallint
较小的数据 [2字节]
mediumint
中等大小的数据 [3字节]
int
标准的整数 [4字节]
bigint
较大的数据 [8字节]
float
浮点数 [4字节]
double
浮点数 [8字节]
decimal
字符串形式的浮点数,一般用于金融计算
字符串
char
字符串固定大小 [0~255]
varchar
可变字符串 [0~65535]
tinytext
微型文本 [2^8-1]
text
文本串 [2^16-1]
时间日期
date
日期格式 [YYYY-MM-DD]
time
时间格式 [HH:mm:ss]
datetime
最常用的时间格式 [YYYY-MM-DD HH:mm:ss]
timestamp
时间戳,1970.1.1到现在的毫秒数
year
年份表示
null
无效,空值,无法计算