时间:2021-07-01 10:21:17 帮助过:3人阅读
create database 数据库名
use 数据库名
create table 表名 (
字段名1,类型,约束
字段名2,类型,约束
...
)
1)直接在建表时字段类型后加 primary key
2)在表最后加 constraint 约束名 primary key(字段名)
3)表外修改 alter table 表名 add constraint 约束名 primary key(字段名)
1)直接在建表类型后加 check(约束条件)
2)在表最后加 constraint 约束名 check(约束条件)
3)表外修改 alter table 表名 add constraint 约束名 check(约束条件)
注:mysql不支持检查约束,但是写上检查约束不会报错
1)直接在创建表的类型后加 not null
2) 在表最后加入 constraint 约束名 check(字段名 is not null)
3)在表外修改 alter table 表名 modify 字段名 字段类型 not null
1)直接在创建表的类型后加 unique
2) 在表的最后加入 constraint 约束名 unqiue(字段名)
3) 在表外修改 alter table 表名 add constraint 约束名 unique(字段名)
1)直接在创建表的类型后加 references 父表名(父表主键名)
2)在表的最后加入 constraint 约束名 foreign key(字段名) references 父表名(父表主键名)
3)在表外修改 alter table 表名 add constraint 约束名 foreign key(字段名) references 父表名(父表主键名)on delete set null on updata cascade
1)直接在创建表的类型后加 default 默认值
2)在表外修改 alter table 表名 add constraint 约束名
alter table 表名 drop constraint 约束名
1)添加字段
alter table 表名 add 字段名 字段类型 注:在表中已经有值时,不能加非空约束
2)删除字段
alter table 表名 drop 字段名
3)修改字段类型
alter table 表名 modify 字段名 新字段类型
4)修改字段名
alter table 表名 change 字段名 新字段名 字段类型
5)修改表名
alter table 表名 rename as 新表名
6)删除表
drop table 表名
show tables
mysql中的表操作
标签:sql cas ref 数据 primary 添加 rop ble 直接