数据库添加新字段

数据库mysql 添加一个字段(int类型),并且初始值设置为0

alter table 表名
ADD COLUMN age int(11) DEFAULT 0

猜你喜欢

转载自blog.csdn.net/qq_43720551/article/details/131563874