MySQL 修改字段型別 varchar轉json

2022-10-08 22:51:26 字數 534 閱讀 8041

如果執行如下語句出錯

alter tablemysql.t_userchangeother_dataother_datajson default null comment '額外資料';

步驟1、檢查other_data欄位是否有非json字串的資料,如:''空串

步驟2、檢查other_data欄位預設值是否為'';

a、如果是,則將預設值改外null

b、如果不是,則執行:updatemysql.t_userset other_data = null where other_data = '',將肉眼不可見的''轉為null

步驟3、alter tablemysql.t_userchangeother_dataother_datajson default null comment '額外資料';

Mysql修改字段型別修改

mysql修改字段型別與長度修改等 alter table news modify column title varchar 130 alter table 表名 modify column 欄位名 型別 如 news 表裡的title 字段 原來長度是 100個字元,現長度要改成130個字元 al...

MySQL修改字段型別

mysql alter table 表名 modify column 欄位名 型別。資料庫中address表 city欄位是varchar 30 修改型別可以用 謹慎修改型別,可能會導致原有資料出錯 mysql alter table address modify column city char ...

Mysql修改字段型別,修改欄位名

mysql修改字段型別 能修改字段型別 型別長度 預設值 注釋 對某欄位進行修改 alter table 表名 modify column 欄位名 新資料型別 新型別長度 新預設值 新注釋 column可以省略 alter table table1 modify column column1 dec...