create table test(id int,name varchar(20))insert into test(id) values(1)
或者
insert into test(id,name) values(1,null)