mysql常用命令总结
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql常用命令总结相关的知识,希望对你有一定的参考价值。
一、约束操作
- 增加主键约束
- 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常用命令总结的主要内容,如果未能解决你的问题,请参考以下文章