Error Code: 1406. Data too long for column - MySQL

前端 未结 8 1614
抹茶落季
抹茶落季 2020-11-27 05:26

Error Code: 1406. Data too long for column

CREATE  TABLE `TEST` 
(

  `idTEST` INT NOT NULL ,

  `TESTcol` VARCHAR(45) NULL ,

  PRIMARY KEY (`idTEST`) 
);
         


        
8条回答
  •  清歌不尽
    2020-11-27 06:03

    Try to check the limits of your SQL database. Maybe you'r exceeding the field limit for this row.

提交回复
热议问题