--运行sql脚本
start d:\sql\test.sql;
--截取屏幕内容
spool d:\sql\test_bak.sql;
select * from emp;
spool off;
--导出表(要进到oracle安装目录下面的bin目录下面进行导出)
exp userid=scott/tiger@ORA1 tables=(emp) file=d:\emp_bak.dmp;
--导出表结构
exp userid=scott/tiger@ORA1 tables=(emp) file=d:\emp_bak.dmp rows=n;
--导出表结构
exp userid=scott/tiger@ORA1 tables=(emp) file=d:\emp_bak.dmp direct=y;
--导出方案
exp userid=scott/tiger@ORA1 owner=scott file=d:\emp_bak.dmp
--导出数据库
exp userid=system/manager@ORA1 full=y inctype=complete file=d:\ORA1.dmp
--导入表
imp userid=scott/tiger@ORA1 tables=(emp) file=d:\emp_bak.dmp;
--查看当前用户拥有哪些表
conn scott/tiger;
select table_name from user_tables;
--查看当前用户可以访问到的表
select table_name from all_tables;
--查看'SCOTT'具有什么角色
select * from dba_role_privs where grantee='SCOTT';
--查看一个角色包含的系统权限
select * from dba_sys_privs where grantee='CONNECT';
--查看一个角色包含的对象权限
select * from dba_tab_privs where grantee='CONNECT';
用户管理
--创建用户
conn system/apq;
create user bob identified by a123;
grant connect to bob;
grant resource to bob; --可以建表
--让bob可以查询scott的emp表
conn scott/tiger;
grant select on emp to bob;
--收回bob的select权限
revoke select on emp from bob;
--希望bob可以继续传递权限
conn scott/tiger;
grant select on emp to bob with grant option;
conn bob/a123;
grant select on scott.emp to lucy;
conn lucy/a123;
select * from scott.emp;
--密码输入错误超过三次锁两天
create profile lock_account limit failed_login_attempts 3 password_lock_time 1;
alter user lucy profile lock_account;
--解锁
alter user lucy account unlock;
--删除用户
drop user lucy cascade;
表管理
--添加一个字段
alter table emp add(id number(2));
--修改字段(不能有数据)
alter table emp modify(id number(4));
--删除一个字段
alter table emp drop column id;
--修改表的名字
rename emp to employee;
--删除表
drop table emp;
--改变日期默认格式
alter session set nls_date_format='yyyy-mm-dd';
insert into student(id, name, birthday) values(2, 'bob', '2001-01-02');
--删除表数据
delete from student;
truncate table student;(速度快,不记录日志)
表查询
--取消重复行
select distinct deptno, job from emp;
--查询emp表员工年工资
select ename, sal, comm, sal*12+nvl(comm,0)*12 "年工资" from emp;
--查询入职时间>1982-01-01的员工
select ename, hiredate from emp where hiredate>'1-1月-1982';
--低于平均工资的员工加上10%
update emp set sal=sal+sal/10 where sal<(select avg(sal) from emp);
--查询每个部门的平均工资
select avg(sal), deptno from emp group by deptno;
--查询平均工资大于2000按部门编号分组
select avg(sal) average, deptno from emp group by deptno having avg(sal)>2000 order by avg(sal) desc;
多表查询
--显示雇员名字、部门名
select a1.ename, a2.dname from emp a1, dept a2 where a1.deptno=a2.deptno;
--显示'FORD'的老板(自连接查询)
select worker.ename, boss.ename from emp worker, emp boss where worker.mgr=boss.empno and worker.ename='FORD';
子查询
--查询和'SMITH'部门相同的员工信息(单行子查询)
select * from emp where deptno=(select deptno from emp where ename='SMITH');
--查询和部门10工作相同的员工信息(多行子查询)
select * from emp where job in (select distinct job from emp where deptno=10);
--查询和'SMITH'部门相同并且工作也相同的员工信息
select * from emp where (deptno, job)=(select deptno, job from emp where ename='SMITH');
--查询高于自己部门平均工资的员工信息
select a1.ename, a1.sal, a1.deptno, a2.avgsal from emp a1, (select deptno, avg(sal) avgsal from emp group by deptno) a2 where a1.deptno=a2.deptno and a1.sal>a2.avgsal;
--使用子查询更新数据(希望'SCOTT'的job,sal和'SMITH'的一样)
update emp_bak set (job, sal) = (select job, sal from emp_bak where name='SMITH') where name='SCOTT';
--导表
create table emp_bak (id, name) as select empno, ename from emp;
--只导入部分数据
create table emp_bak (id number(6), name varchar2(20), deptno number(10));
insert into emp_bak (id, name, deptno) select empno, ename, deptno from emp where deptno=10;
Oracle分页查询
--显示行号
select a1.*, rownum rn from (select * from emp) a1;
--显示1~10条记录
select a1.*, rownum rn from (select * from emp) a1 where rownum<=10;
--显示5~10条记录
select * from (select a1.*, rownum rn from (select * from emp) a1 where rownum<=10) where rn>=5;
合并查询
--union(两个表重复的去掉)
select ename, sal, job from emp where sal>2500 union select ename, sal, job from emp where job='MANAGER';
--union all(不去掉重复的)
--intersect(两个表都有的)
--minus(用大的减小的)
Oracle常用函数
--round四舍五入的取
select round(comm, 2) from emp where ename='BOB';
--floor 向下取整 55.01 55
select floor(comm) from emp where ename='BOB';
--ceil 向上取整 55.01 56
select ceil(comm) from emp where ename='BOB';
--to_char
select ename, to_char(hiredate, 'yyyy-mm-dd hh24:mi:ss'), to_char(sal, 'L99999.99') from emp;
表空间
--创建表空间
create tablespace sp001 datafile 'd:\sp001.dbf' size 10m uniform size 128k;
--使用表空间
create table t1 (deptno number(2), name varchar2(20), loc varchar(20)) tablespace sp001;
--使表空间脱机
alter tablespace sp001 offline;
--使表空间联机
alter tablespace sp001 online;
--设置只读表空间
alter tablespace sp001 read only;
--可读可写
alter tablespace sp001 read write;
--删除表空间
drop tablespace sp001 including contents and datafiles;
--扩展表空间
--1.增加数据文件
alter tablespace sp001 add datafile 'd:\sp002.dbf' size 200m;
--2.重新设置大小(不要超过500m)
alter tablespace sp001 'd:\sp001.dbf' resize 200m;
--3.设置文件的自动增长
alter tablespace sp001 'd:\sp001.dbf' autoextend on next 10m maxsize 500m;
完整性约束
--添加not null约束
alter table goods modify goodsName not null;
--添加unique约束
alter table customer add constraint cardunique unique(cardId);
--添加check约束
alter table customer add constraint addresscheck check (address in ('海淀', '西城'));
--删除约束
alter table 表名 drop constraint 约束名称
--删除主键
alter table 表名 drop primary key cascade;
索引
--创建索引
--单列索引
create index 索引名 on 表名(列名);
--复合索引
create index 索引名 on 表名(列名1, 列名2);
create index 索引名 on 表名(列名2, 列名1);
分享到:
相关推荐
本教程“Oracle快速入门之Oracle初步体验”旨在引导初学者踏入Oracle数据库的世界,了解其基本概念、发展历程以及Oracle 10G的主要特性。 首先,我们要明白数据库使用人员的不同层次。一般用户需要具备基本的数据库...
本教程将基于"Oracle初步学习"的主题,结合提供的标签和压缩包文件,深入浅出地探讨Oracle的核心概念、工具以及实践练习。 一、Oracle核心概念 1. 数据库架构:Oracle数据库由物理存储结构(如数据文件、控制文件、...
在本教程中,我们将深入探讨如何在JDev中进行Oracle OLAP的初步开发应用。 首先,我们需要配置开发环境。确保你已经安装了Oracle BI(Business Intelligence)开发工具JDeveloper,这是一个集成的开发环境,支持...
Oracle安装以及初步设置教程,详细的安装步骤以及各服务的作用详解。
### Oracle的索引初步学习 #### 一、Oracle索引概览 索引在Oracle数据库中扮演着极其重要的角色,它是提高数据检索速度的关键技术之一。简单来说,索引类似于书籍中的目录,可以帮助快速定位数据的位置,从而显著...
"Oracle SQL优化初步"这个主题涵盖了DBA们在日常工作中必须掌握的基础知识和技巧。SQL优化的目标是通过改进查询结构、利用索引、调整执行计划等方法,减少查询时间,提高数据处理速度,从而提升整体系统性能。 首先...
Oracle 故障诊断方法是数据库管理员在遇到Oracle数据库系统出现问题时必须掌握的关键技能。Oracle数据库作为全球广泛使用的大型关系型数据库管理系统,其复杂性和多样性使得故障诊断成为一个涉及多个层面的技术领域...
### Oracle 11g RMAN备份与恢复初步方案解析 #### 一、RMAN备份与恢复概述 **RMAN(Recovery Manager)**是Oracle提供的一种强大工具,主要用于数据库的备份、还原及恢复操作。RMAN支持从Oracle 8及更高版本的...
以上就是Oracle数据库的基础使用,包括环境配置、SQLPLUS命令的运用以及SQL查询的初步理解。这只是一个起点,Oracle的深度和广度远不止于此,包括索引、视图、触发器、存储过程、性能优化等方面都有大量知识等待探索...
通过本章的学习,读者应该能够对Oracle有一个初步的认识,并掌握安装和管理Oracle数据库的基本技能。 ### SQL数据操作和查询 #### SQL简介 SQL(Structured Query Language,结构化查询语言)是一种用于管理和...
本文将深入探讨Oracle索引的学习初步,帮助读者理解其原理、类型、创建与管理,以及如何优化查询。 一、索引原理 索引就像是书籍的目录,允许我们快速定位到所需信息,而非逐页翻阅。在Oracle数据库中,索引通过...
Oracle数据库作为一款广泛使用的商业数据库系统,经常在企业级应用中被采用。本篇文章将重点讨论如何使用Java JDBC和Oracle数据库实现面向对象的分页查询。 首先,我们需要了解面向对象编程的基本概念。面向对象...
本文档“Oracle SQL优化初步”由李锐整理,旨在介绍Oracle SQL优化的基本概念和策略。 首先,要理解影响数据库系统性能的因素。这包括硬件层面的CPU、RAM和存储系统,操作系统参数配置,以及Oracle数据库自身的参数...
空间数据库 第三章 Oracle 9i初步介绍
这有助于他们建立起对数据库管理系统的初步认识,为进一步学习更高级的Oracle功能,如存储过程、触发器、索引优化、备份恢复等打下基础。通过逐步深入学习,初学者可以掌握如何创建和管理用户、配置数据库实例、确保...
Oracle10g初步体验.pptx