MySQL alter table modify column failing at rows with null values

前端 未结 4 1836
野的像风
野的像风 2021-02-20 03:39

I have a table with about 10K rows, which I am trying to alter so that the field fielddelimiter is never null. I am attempting to do an alter statement, expecting a

4条回答
  •  野性不改
    2021-02-20 04:14

    In my case I was setting the column to NOT NULL

    ALTER TABLE `request_info` 
    CHANGE COLUMN `col_2` `col_2` 
    VARCHAR(2000) 
    NOT NULL -- here was setting it to NULL when the existing col allowed NULL
    AFTER `col_1`
    

    when previously I set the column to DEFAULT NULL (i.e. allow NULL values), so if you want to allow NULL then you can do the following:

    ALTER TABLE `request_info` 
    CHANGE COLUMN `col_2` `col_2` 
    VARCHAR(2000) 
    DEFAULT NULL -- changed from NOT --> DEFAULT 
    AFTER `col_1`
    

提交回复
热议问题