Mysql int(11)的作用

(11) 表示显示位数

create table t (
name int
)

则show create table t,显示的int为int(11),默认无符号包括负数。

你可能感兴趣的:(java,mysql)