not null 非空 字段+not null
unique 唯一
primary key 主键(确保数据不能重复)
foreign key 外键
check 必须
drop purge彻底删除
级联删除:删除一个部门,部门里的员工跟着删除--->on delete cascade
制空:把部门下的员工转到NULL,删除部门--->on delete set null
不能动:先删员工,再删部门
references 参照
constraint 约束
用子查询创建的表除了null,约束无法复制
col first_name for a10
只读:只能查询,不能增删改 (read only) 解锁只读(read write)
where 1=2;不复制表内容
increment by 每次加值
start with从哪开始
maxvalue 加到最大值
nocycle 循环
nocache 把序列号放入内存里
在索引里修改:先做删除再插入
时间: 2024-10-08 02:20:17