mysql> create table t1(id int primary key auto_increment, -> name char(10) not null, -> age int not null); Query OK, 0 rows affected (0.38 sec) mysql> insert into t1(name,age)values('fang',18),('haiyan',17),('dong',21); Query OK, 3 rows affected (0.06 sec) Records: 3 ...