mysql的tinyint(1), tinyint(4), int(1), int(4),unsigned, zerofill等区别、作用介绍
https://my.oschina.net/mui/blog/3017923
tinyint长度只是为了补0
java 对应 byte 类型, 取值范围 -128~127,无符:0~255
在 set 方法赋值的时,用 byte 要强转一下,(所以还是用 int 或 integer 吧 ?)
SQL C#
bigint(sql大小:8byte) long(64位)
int, integer(sql大小:4byte) int(32位)
smallint(sql大小:2byte) short(16位)
tinyint(sql大小:1byte) byte(8位)
https://www.cnblogs.com/chang1/p/6952662.html