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

mysql常用命令总结

时间:2017-07-18 23:12:29      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:操作   外键约束   命令   字段   foreign   ref   str   tab   约束   

 一、约束操作

  • 增加主键约束
  • alter table 表名 add constraint 约束名 primary key(列名)
  • 增加外键约束
  • alter table 表名 add constraint 约束名 foreign key(列名) references 表名(列名);
  • 删除主键约束
  • alter table 表名 drop primary key
  • 删除外键约束
  • alter table 表名 drop foreign key 约束

二、字段操作

  • 添加字段
  • alter table 表名 add column 字段名 数据类型
  • 删除字段
  • alter table 表名 drop column 列名;
  • 修改字段
  • alter table 表名 change 旧列名 新列名 数据类型

三、表操作

  • 修改表名
  • alter table 旧表名 rename to 新表名
  • 查看表结构
  •  desc 表名

mysql常用命令总结

标签:操作   外键约束   命令   字段   foreign   ref   str   tab   约束   

原文地址:http://www.cnblogs.com/songadai/p/7203163.html

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