WEB开发网
开发学院数据库Oracle 从零开始学Oracle—环境配置(一) 阅读

从零开始学Oracle—环境配置(一)

 2009-04-09 13:11:41 来源:WEB开发网   
核心提示: with grant option 授予用户权限,则接受权限的用户可以将此权限授予其他用户.(1).建表,并指定表空间示例: Create table tab1 ( no number(4), name varchar2(10) )tablespace Product;学生表 Studen

with grant option 授予用户权限,则接受权限的用户可以将此权限授予其他用户.

(1).建表,并指定表空间

  示例: Create table tab1
          (
             no number(4),
             name varchar2(10)
          )tablespace Product;

学生表  Student

       Create table student
       ( 
         xh number(4) primary key, --学号
         name varchar2(10) not null, --姓名
         sex  char(2)  check (sex in ('男','女')),--性别
         birthday date,--生日
         sal number(7,2), --奖学金
         classid number(2) references class(classid) --班级         
       ); 班级表class
         Create table class
         (
          classid number(2), --班级编号
          cname varchar2(20) --班级名字
         );

添加字段(学生所在班级classid)

alter table student add (classid number(2));

修改字段的长度

alter table student modify (xm varchar2(12)) ;

修改字段的类型(不能有记录的)

alter table student modify (xh varchar2(5));

删除一个字段

alter table student drop column sal;

上一页  1 2 3 4  下一页

Tags:开始 Oracle 环境

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接