如果你那个字段允许为NULL,那么就判断一下,有值就插入,没有就插入NULL 比如:有值: insert into table1 (col1) values('2006-1-1') 没有值: insert into table1 (col1) values(null)