欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

数据库复习——创建表和表的维护

程序员文章站 2024-03-21 10:52:46
...

知识点:

默认为oracle数据库

  • 1.创建一个表

                         基本语句:create table 表名(字段名 类型 约束 ,

                                                                       字段名 类型 约束 ,

                                                                        字段名 类型 约束)

现在创建一个表:

create table position(
id number(2) primary key,
name char(16) not null,
sex char(4) default '男' check(sex='男' or sex='女'),
work_name char(16) not null
)

添加数据:

insert all 
       into position values(1,'egon0','男','技术')
       into position values(2,'liwen','男','人力资源')
       into position values(3,'alex','女','销售')
       into position values(4,'yuanhao','女','销售') 
       select 1 from dual

 数据库复习——创建表和表的维护

  • 2.表层面的维护:
  •     2.1 在表里面添加一个新的字段:alter table 表名 add 字段名 类型

    

 alter table position add dept number(2)

数据库复习——创建表和表的维护

  • 2.2  修改表名
 --把position表名改为AB
rename position to AB      
  • 2.3修改字段名
  --修改表AB  dept字段的属性
alter table AB modify dept char(2)    
  • 2.4 删除字段
alter table AB drop column dept
  • 2.5 删除表
drop table AB