7 插入.更新与删除数据 7.1 插入数据 先创建表person: create table person( id int not null, name char(40) not null default '', age int not null default 0, info char(50) null, primary key(id) ); 7.1.1 为表的所有字段插入数据 insert into 表名 (属性1,属性2,...) values(值1,值2,...) [,(值1,值2,..…