Oracle数据库常用操作集锦
- 数据库表的作用是什么?
在关系型数据库中,所有数据的组织,管理和使用都是表为基础的。Oracle 数据库中的信息都要存放在表中,表的逻辑结构是以行列为组织结构的,它是一种逻辑结构,在数据库中并不存在。
- 数据库表定义主键的关键字是___primary key;定义外键的关键字是__references_______。
- 定义一个字段不可为空的关键字是___not null_______,检查约束所使用的关键字是_check_____
- 创建员工管理表(编号,姓名,年龄,性别,住址)
create table Staff_Mange
(
staff_id int,
staff_name varchar2(8),
age int,
sex char(2),
address varchar(30)
)
- 创建薪水表(编号,薪水)
create table staff_salary
(
staff_id int,
salary number(7,2)
)
- 为员工表添加主键,主属性为员工编号
alter table Staff_Mange add constraint
pk_staff_id primary key(staff_id)
- 为薪水表和员工表建立依赖关系
alter table staff_salary add constraint
fk_staff_id foreign key (staff_id) references
staff_mange(staff_id)
- 为薪水表添加检查约束,添加薪水值不能超过10000
alter table staff_salary add constraint ck_salary check(salary<=10000)
- 删除薪水表中的薪水字段
alter table staff_salary drop column salary
- 、将薪水表更名为员工薪水表
rename staff_salary to staff
- 为员工薪水表添加一个列
alter table staff_salary add MM911 varchar2(10)
TAG: