码迷,mamicode.com
首页 > 数据库 > 详细

mysql (mariadb)表结构添加修改删除方法总结

时间:2017-12-27 18:10:23      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:修改表   alt   char   modify   tab   表名   网络   .com   drop   

1,添加表字段

    alter table table1 add ptel varchar(100) not Null;

    alter table table1 add id int unsigned not Null auto_increment primary key;

    alter table table1 add tj int(1) not Nul default ‘1‘;

2,修改表字段

   alter table 表名称 change 字段名称 字段名称 字段类型 [是否允许非空];

   alter table 表名称 modify 字段名称 字段类型 [是否允许非空];

   alter table 表名称 modify 字段名称 字段类型 [是否允许非空];

3,删除表字段

    alter table table1 drop 字段名

上述来自玖乐网络(96net.com.cn)

mysql (mariadb)表结构添加修改删除方法总结

标签:修改表   alt   char   modify   tab   表名   网络   .com   drop   

原文地址:https://www.cnblogs.com/96net/p/8126163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!