oracle 建表 练习2

Posted ╄承诺、带给的伤痛—

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 建表 练习2相关的知识,希望对你有一定的参考价值。

-- Create table
create table COURSE
(
  cno   VARCHAR2(5) not null,
  cname VARCHAR2(20) not null,
  tno   NUMBER not null
)
tablespace USERS
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    next 1M
    minextents 1
    maxextents unlimited
  );
-- Add comments to the table 
comment on table COURSE
  is \'课程表\';
-- Add comments to the columns 
comment on column COURSE.cno
  is \'课程号(主键)\';
comment on column COURSE.cname
  is \'课程名称\';
comment on column COURSE.tno
  is \'教工编号(外键)\';

以上是关于oracle 建表 练习2的主要内容,如果未能解决你的问题,请参考以下文章

Oracle数据库建表+添加数据练习

ORACLE----多表查询语句练习

Oracle笔记 建表更新查询综合练习

接近50道经典SQL练习题,附建表SQL解题SQL

无法理解SQL(Oracle)建表代码

数据库简单练习 建表+select