The database returned no natively generated identity value问题 alter table user_table MODIFY user_id INT UNSIGNED AUTO_INCREMENT; 问题来了,为什么我们要对我们的数据表作自增操作? 因为当我们对表设置为自增之后,我们以后若是想在表中插入数据的话,比如这个表是这样的: userId userName password md5 INTEGER VARCHAR(20) VARCH