Mysql Basic

Mysql Basic

1、在表hd_wish中添加字段time

alter table hd_wish add column time int(10) not null default 0;

2、修改字段的长度等相关信息(原来content列的长度是200,null,无默认值)

alter table hd_wish modify content varchar(255) not null default '';

原文地址:https://www.cnblogs.com/la-isla-bonita/p/3577395.html