- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Oracle常用命令(一)
中华IT学院 ??【大 中 小】??[ 2011年5月10日 ]
-
Oracle数据类型:
Create table test1(name char(10),sex char(1));
Insert into test1 values(‘tomcatt北京’,’f’);
Create table test2(name nchar(10),sex nchar(1));
Insert into test2 values(‘tomcatt北京’,’男’);
删除表 drop table 表名;
Create table test3(name varchar2(10),sex varchar2(2));
Insert into test3 values(‘tomcatt北京’,’f’);//插入值过大
Insert into test3 values(‘tomcat北京’,’f’);
Create table test4(name varchar2(10),age number(3),salary number(8,2));
Create table test5(name varchar2(10),birth date);
Insert into test5 values(‘Tom’,’28-2月-08’);
Insert into test5 values(‘Allen’,sysdate);
DDL:
创建表
create table scott.test6(
eid number(10),
name varchar2(20),
hiredate date default sysdate,
salary number(8,2) default 0
)
插入数据时若没有指定hiredate,salary的话则会取默认值
数据字典:
Dba-所有方案包含的对象信息
All-用户可以访问的对象信息
User-用户方案的对象信息
Select * from user_tables;
Select * from all_tables;
Oracle常用命令(一)_第2页
中华IT学院 ??【大 中 小】??[ 2011年5月10日 ]
约束:
域完整性约束:not null check
实体完整性约束:unique primary key
参照完整性约束:foreign key
视图:
Create or replace view v1(eid,name,salary) as select empno,ename,sal from emp where deptno = 30;
序列:sequence
Create sequence mysequence1 increment by 1 start with 1 nomaxvalue nocycle;
Insert into test values(mysequence1.nextval,’tom’);
Create sequence student_sequence start with 1 increment by 1;
Insert into student values(student_sequence.nextval,’john’);
表间数据拷贝:
Insert into dept1(id,name) select deptno,dname from dept;
实例(创建表 ID字段自增):
--create table test2(id char(10) primary key not null, name char(10));
--create sequence test2_sequence increment by 1 start with 1 nomaxvalue nocycle;
--insert into test2 values(test2_sequence.nextval,john);
--insert into test2 values(test2_sequence.nextval,allen);
--insert into test2 values(test2_sequence.nextval,candy);
--insert into test2 values(test2_sequence.nextval,aaaa);
--insert into test2 values(test2_sequence.nextval,bbbbb);
-
文档评论(0)