# 0填充DROP TABLE IF EXISTS tab_int;CREATE TABLE tab_int( t1 int(4) ZEROFILL, t2 int(15) ZEROFILL);根据int的长度填充0,如插入t1(12) 则结果为:t1(0012)有无符号设置整型范围表