Mysql
 sql >> Datenbank >  >> RDS >> Mysql

java.sql.SQLException:Feld hat keinen Standardwert

In meinem Fall bestand das Problem darin, dass die Primärschlüsselspalte nicht auf AUTO_INCREMENT gesetzt war

So habe ich es gelöst:

alter table department modify column id int NOT NULL AUTO_INCREMENT;