尚学堂马士兵Oracle教程笔记
- 检查Oracle安装
- 首先,以超级管理员的身份登录oracle
- sqlplus sys/bjsxt as sysdba
- 然后,解除对scott用户的锁
- alter user scott account unlock;
- 那么这个用户名就能使用了。
- (默认全局数据库名orcl)
- 、select ename, sal * from emp; //计算年薪
- 、select * from dual; //计算一个比较纯的数据用dual表
- 、select sysdate from dual; //查看当前的系统时间
- 、select ename, sal* anuual_sal from emp; //给搜索字段更改名称(双引号 keepFormat 别名有特殊字符,要加双引号)。
- 、任何含有空值的数学表达式,最后的计算结果都是空值。
- 、select ename||sal from emp; //(将sal的查询结果转化为字符串,与ename连接到一起,相当于Java中的字符串连接)
- 、select ename||'afasjkj' from emp; //字符串的连接
- 、select distinct deptno from emp; //消除deptno字段重复的值
- 、select distinct deptno , job from emp; //将与这两个字段都重复的值去掉
- 、select * from emp where deptno=; //(条件过滤查询)
- 、select * from emp where empno > ; //大于 过滤判断
- 、select * from emp where empno <> //不等于 过滤判断
- 、select * from emp where ename > 'cba'; //字符串比较,实际上比较的是每个字符的AscII值,与在Java中字符串的比较是一样的
- 、select ename, sal from emp where sal between and ; //(between and过滤,包含800 1500)
- 、select ename, sal, comm from emp where comm is null; //(选择comm字段为null的数据)
- 、select ename, sal, comm from emp where comm is not null; //(选择comm字段不为null的数据)
- 、select ename, sal, comm from emp where sal in (, ,); //(in 表范围)
- 、select ename, sal, hiredate from emp where hiredate > '02-2月-1981'; //(只能按照规定的格式写)
- 、select ename, sal from emp where deptno = or sal >;
- 、select ename, sal from emp where deptno = and sal >;
- 、select ename, sal, comm from emp where sal not in (, ,); //(可以对in指定的条件进行取反)
- 、select ename from emp where ename like '%ALL%'; //(模糊查询)
- 、select ename from emp where ename like '_A%'; //(取第二个字母是A的所有字段)
- 、select ename from emp where ename like '%/%%'; //(用转义字符/查询字段中本身就带%字段的)
- 、select ename from emp where ename like '%$%%' escape '$'; //(用转义字符/查询字段中本身就带%字段的)
- 、select * from dept order by deptno desc; (使用order by desc字段 对数据进行降序排列 默认为升序asc);
- 、select * from dept where deptno <> order by deptno asc; //(我们可以将过滤以后的数据再进行排序)
- 、select ename, sal, deptno from emp order by deptno asc, ename desc; //(按照多个字段排序 首先按照deptno升序排列,当detpno相同时,内部再按照ename的降序排列)
- 、select lower(ename) from emp; //(函数lower() 将ename搜索出来后全部转化为小写);
- 、select ename from emp where lower(ename) like '_a%'; //(首先将所搜索字段转化为小写,然后判断第二个字母是不是a)
- 、select substr(ename, , ) from emp; //(使用函数substr() 将搜素出来的ename字段从第二个字母开始截,一共截3个字符)
- 、select chr() from dual; //(函数chr() 将数字转化为AscII中相对应的字符)
- 、select ascii('A') from dual; //(函数ascii()与32中的chr()函数是相反的 将相应的字符转化为相应的Ascii编码) )
- 、select round(23.232) from dual; //(函数round() 进行四舍五入操作)
- 、select round() from dual; //(四舍五入后保留的小数位数 0 个位 -1 十位)
- 、select to_char(sal, '$99,999.9999')from emp; //(加$符号加入千位分隔符,保留四位小数,没有的补零)
- 、select to_char(sal, 'L99,999.9999')from emp; //(L 将货币转化为本地币种此处将显示¥人民币)
- 、select to_char(sal, 'L00,000.0000')from emp; //(补零位数不一样,可到数据库执行查看)
- 、select to_char(hiredate, 'yyyy-MM-DD HH:MI:SS') from emp; //(改变日期默认的显示格式)
- 、select to_char(sysdate, 'yyyy-MM-DD HH:MI:SS') from dual; //(用12小时制显示当前的系统时间)
- 、select to_char(sysdate, 'yyyy-MM-DD HH24:MI:SS') from dual; //(用24小时制显示当前的系统时间)
- 、select ename, hiredate from emp where hiredate > to_date('1981-2-20 12:24:45','YYYY-MM-DD HH24:MI:SS'); //(函数to-date 查询公司在所给时间以后入职的人员)
- 、select sal from emp where sal > to_number('$1,250.00', '$9,999.99'); //(函数to_number()求出这种薪水里带有特殊符号的)
- 、select ename, sal* + nvl(comm,) from emp; //(函数nvl() 求出员工的"年薪 + 提成(或奖金)问题")
- 、select max(sal) from emp; // (函数max() 求出emp表中sal字段的最大值)
- 、select min(sal) from emp; // (函数max() 求出emp表中sal字段的最小值)
- 、select avg(sal) from emp; //(avg()求平均薪水);
- 、select to_char(avg(sal), '999999.99') from emp; //(将求出来的平均薪水只保留2位小数)
- 、select round(avg(sal), ) from emp; //(将平均薪水四舍五入到小数点后2位)
- 、select sum(sal) from emp; //(求出每个月要支付的总薪水)
- /////////////////////////组函数(共5个):将多个条件组合到一起最后只产生一个数据//////min() max() avg() sum() count()/////////////////////////////
- 、select count(*) from emp; //求出表中一共有多少条记录
- 、select count(*) from emp where deptno=; //再要求一共有多少条记录的时候,还可以在后面跟上限定条件
- 、select count(distinct deptno) from emp; //统计部门编号前提是去掉重复的值
- ////////////////////////聚组函数group by() //////////////////////////////////////
- 、select deptno, avg(sal) from emp group by deptno; //按照deptno分组,查看每个部门的平均工资
- 、select max(sal) from emp group by deptno, job; //分组的时候,还可以按照多个字段进行分组,两个字段不相同的为一组
- 、select ename from emp where sal = (select max(sal) from emp); //求出
- 、select deptno, max(sal) from emp group by deptno; //搜素这个部门中薪水最高的的值
- //////////////////////////////////////////////////having函数对于group by函数的过滤 不能用where//////////////////////////////////////
- 、select deptno, avg(sal) from emp group by deptno having avg(sal) >; (order by )//求出每个部门的平均值,并且要 > 2000
- 、select avg(sal) from emp where sal > group by deptno having avg(sal) > order by avg(sal) desc;//求出sal>1200的平均值按照deptno分组,平均值要>1500最后按照sal的倒序排列
- 、select ename,sal from emp where sal > (select avg(sal) from emp); //求那些人的薪水是在平均薪水之上的。
- 、select ename, sal from emp join (select max(sal) max_sal ,deptno from emp group by deptno) t on (emp.sal = t.max_sal and emp.deptno=t.deptno); //查询每个部门中工资最高的那个人
- ///////////////////////////////等值连接//////////////////////////////////////
- 、select e1.ename, e2.ename from emp e1, emp e2 where e1.mgr = e2.empno; //自连接,把一张表当成两张表来用
- 、select ename, dname from emp, dept; //92年语法 两张表的连接 笛卡尔积。
- 、select ename, dname from emp cross join dept; //99年语法 两张表的连接用cross join
- 、select ename, dname from emp, dept where emp.deptno = dept.deptno; // 92年语法 表连接 + 条件连接
- 、select ename, dname from emp join dept on(emp.deptno = dept.deptno); // 新语法
- 、select ename,dname from emp join dept using(deptno); //与66题的写法是一样的,但是不推荐使用using : 假设条件太多
- ///////////////////////////////////////非等值连接///////////////////////////////////////////
- 、select ename,grade from emp e join salgrade s on(e.sal between s.losal and s.hisal); //两张表的连接 此种写法比用where更清晰
- 、select ename, dname, grade from emp e
- join dept d on(e.deptno = d.deptno)
- join salgrade s on (e.sal between s.losal and s.hisal)
- where ename not like '_A%'; //三张表的连接
- 、select e1.ename, e2.ename from emp e1 join emp e2 on(e1.mgr = e2.empno); //自连接第二种写法,同62
- 、select e1.ename, e2.ename from emp e1 left join emp e2 on(e1.mgr = e2.empno); //左外连接 把左边没有满足条件的数据也取出来
- 、select ename, dname from emp e right join dept d on(e.deptno = d.deptno); //右外连接
- 、select deptno, avg_sal, grade from (select deptno, avg(sal) avg_sal from emp group by deptno) t join salgrade s on (t.avg_sal between s.losal and s.hisal);//求每个部门平均薪水的等级
- 、select ename from emp where empno in (select mgr from emp); // 在表中搜索那些人是经理
- 、select sal from emp where sal not in(select distinct e1.sal from emp e1 join emp e2 on(e1.sal < e2.sal)); // 面试题 不用组函数max()求薪水的最大值
- 、select deptno, max_sal from
- (select avg(sal) max_sal,deptno from emp group by deptno)
- where max_sal =
- (select max(max_sal) from
- (select avg(sal) max_sal,deptno from emp group by deptno)
- );//求平均薪水最高的部门名称和编号。
- 、select t1.deptno, grade, avg_sal from
- (select deptno, grade, avg_sal from
- (select deptno, avg(sal) avg_sal from emp group by deptno) t
- join salgrade s on(t.avg_sal between s.losal and s.hisal)
- ) t1
- join dept on (t1.deptno = dept.deptno)
- where t1.grade =
- (
- select min(grade) from
- (select deptno, grade, avg_sal from
- (select deptno, avg(sal) avg_sal from emp group by deptno) t
- join salgrade s on(t.avg_sal between s.losal and s.hisal)
- )
- )//求平均薪水等级最低的部门的名称 哈哈 确实比较麻烦
- 、create view v$_dept_avg_sal_info as
- select deptno, grade, avg_sal from
- (select deptno, avg(sal) avg_sal from emp group by deptno) t
- join salgrade s on(t.avg_sal between s.losal and s.hisal);
- //视图的创建,一般以v$开头,但不是固定的
- 、select t1.deptno, grade, avg_sal from v$_dept_avg_sal_info t1
- join dept on (t1.deptno = dept.deptno)
- where t1.grade =
- (
- select min(grade) from
- v$_dept_avg_sal_info t1
- )
- )//求平均薪水等级最低的部门的名称 用视图,能简单一些,相当于Java中方法的封装
- 、---创建视图出现权限不足时候的解决办法:
- conn sys/admin as sysdba;
- 显示:连接成功 Connected
- grant create table, create view to scott;
- 显示: 授权成功 Grant succeeded
- 、-------求比普通员工最高薪水还要高的经理人的名称 -------
- select ename, sal from emp where empno in
- (select distinct mgr from emp where mgr is not null)
- and sal >
- (
- select max(sal) from emp where empno not in
- (select distinct mgr from emp where mgr is not null)
- )
- 、---面试题:比较效率
- select * from emp where deptno = and ename like '%A%';//好,将过滤力度大的放在前面
- select * from emp where ename like '%A% and deptno = ;
- 、-----表的备份
- create table dept2 as select * from dept;
- 、-----插入数据
- insert into dept2 values(,'game','beijing');
- ----只对某个字段插入数据
- insert into dept2(deptno,dname) values(,'game2');
- 、-----将一个表中的数据完全插入另一个表中(表结构必须一样)
- insert into dept2 select * from dept;
- 、-----求前五名员工的编号和名称(使用虚字段rownum 只能使用 < 或 = 要使用 > 必须使用子查询)
- select empno,ename from emp where rownum <= ;
- 、----求名雇员以后的雇员名称--------
- select ename from (select rownum r,ename from emp) where r > ;
- 、----求薪水最高的前个人的薪水和名字---------
- select ename, sal from (select ename, sal from emp order by sal desc) where rownum <=;
- 、----求按薪水倒序排列后的第名到第名的员工的名字和薪水--------
- select ename, sal from
- (select ename, sal, rownum r from
- (select ename, sal from emp order by sal desc)
- )
- where r>= and r<=
- 、----------------创建新用户---------------
- 、backup scott//备份
- exp//导出
- 、create user
- create user guohailong identified(认证) by guohailong default tablespace users quota(配额) 10M on users
- grant create session(给它登录到服务器的权限),create table, create view to guohailong
- 、import data
- imp
- 、-----------事务回退语句--------
- rollback;
- 、-----------事务确认语句--------
- commit;//此时再执行rollback无效
- 、当正常断开连接的时候例如exit,事务自动提交。 当非正常断开连接,例如直接关闭dos窗口或关机,事务自动提交
- 、有个表S,C,SC
- S(SNO,SNAME)代表(学号,姓名)
- C(CNO,CNAME,CTEACHER)代表(课号,课名,教师)
- SC(SNO,CNO,SCGRADE)代表(学号,课号成绩)
- 问题:
- ,找出没选过“黎明”老师的所有学生姓名。
- ,列出门以上(含门)不及格学生姓名及平均成绩。
- ,即学过号课程有学过号课所有学生的姓名。
- 答案:
- 、
- select sname from s join sc on(s.sno = sc.sno) join c on (sc.cno = c.cno) where cteacher <> '黎明';
- 、
- select sname where sno in (select sno from sc where scgrade < group by sno having count(*) >=);
- 、
- select sname from s where sno in (select sno, from sc where cno= and cno in
- (select distinct sno from sc where cno = );
- )
- 、--------------创建表--------------
- create table stu
- (
- id number(),
- name varchar2() constraint stu_name_mm not null,
- sex number(),
- age number(),
- sdate date,
- grade number() ,
- ),
- email varchar2() unique
- );
- 、--------------给name字段加入 非空 约束,并给约束一个名字,若不取,系统默认取一个-------------
- create table stu
- (
- id number(),
- name varchar2() constraint stu_name_mm not null,
- sex number(),
- age number(),
- sdate date,
- grade number() ,
- ),
- email varchar2()
- );
- 、--------------给nameemail字段加入 唯一 约束 两个 null值 不为重复-------------
- create table stu
- (
- id number(),
- name varchar2() constraint stu_name_mm not null,
- sex number(),
- age number(),
- sdate date,
- grade number() ,
- ),
- email varchar2() unique
- );
- 、--------------两个字段的组合不能重复 约束:表级约束-------------
- create table stu
- (
- id number(),
- name varchar2() constraint stu_name_mm not null,
- sex number(),
- age number(),
- sdate date,
- grade number() ,
- ),
- email varchar2(),
- constraint stu_name_email_uni unique(email, name)
- );
- 、--------------主键约束-------------
- create table stu
- (
- id number(),
- name varchar2() constraint stu_name_mm not null,
- sex number(),
- age number(),
- sdate date,
- grade number() ,
- ),
- email varchar2(),
- constraint stu_id_pk primary key (id),
- constraint stu_name_email_uni unique(email, name)
- );
- ?、--------------外键约束 被参考字段必须是主键 -------------
- create table stu
- (
- id number(),
- name varchar2() constraint stu_name_mm not null,
- sex number(),
- age number(),
- sdate date,
- grade number() ,
- ) references class(id),
- email varchar2(),
- constraint stu_class_fk foreign key (class) references class(id),
- constraint stu_id_pk primary key (id),
- constraint stu_name_email_uni unique(email, name)
- );
- create table class
- (
- id number() primary key,
- name varchar2() not null
- );
- 、---------------修改表结构,添加字段------------------
- alter table stu add(addr varchar2());
- 、---------------删除字段--------------------------
- alter table stu drop (addr);
- 、---------------修改表字段的长度------------------
- alter table stu modify (addr varchar2());//更改后的长度必须要能容纳原先的数据
- 、----------------删除约束条件----------------
- alter table stu drop constraint 约束名
- 、-----------修改表结构添加约束条件---------------
- alter table stu add constraint stu_class_fk foreign key (class) references class (id);
- 、---------------数据字典表----------------
- desc dictionary;
- //数据字典表共有两个字段 table_name comments
- //table_name主要存放数据字典表的名字
- //comments主要是对这张数据字典表的描述
- 、---------------查看当前用户下面所有的表、视图、约束-----数据字典表user_tables---
- select table_name from user_tables;
- select view_name from user_views;
- select constraint_name from user-constraints;
- 、-------------索引------------------
- create index idx_stu_email on stu (email);// 在stu这张表的email字段上建立一个索引:idx_stu_email
- 、---------- 删除索引 ------------------
- drop index index_stu_email;
- 、---------查看所有的索引----------------
- select index_name from user_indexes;
- 、---------创建视图-------------------
- create view v$stu as selesct id,name,age from stu;
- 视图的作用: 简化查询 保护我们的一些私有数据,通过视图也可以用来更新数据,但是我们一般不这么用 缺点:要对视图进行维护
- 、-----------创建序列------------
- create sequence seq;//创建序列
- select seq.nextval from dual;// 查看seq序列的下一个值
- drop sequence seq;//删除序列
- 、------------数据库的三范式--------------
- ()、要有主键,列不可分
- ()、不能存在部分依赖:当有多个字段联合起来作为主键的时候,不是主键的字段不能部分依赖于主键中的某个字段
- ()、不能存在传递依赖
- ==============================================PL/SQL==========================
- 、-------------------在客户端输出helloworld-------------------------------
- set serveroutput on;//默认是off,设成on是让Oracle可以在客户端输出数据
- 、begin
- dbms_output.put_line('helloworld');
- end;
- /
- 、----------------pl/sql变量的赋值与输出----
- declare
- v_name varchar2();//声明变量v_name变量的声明以v_开头
- begin
- v_name := 'myname';
- dbms_output.put_line(v_name);
- end;
- /
- 、-----------pl/sql对于异常的处理(除数为)-------------
- declare
- v_num number := ;
- begin
- v_num := /v_num;
- dbms_output.put_line(v_num);
- exception
- when others then
- dbms_output.put_line('error');
- end;
- /
- 、----------变量的声明----------
- binary_integer:整数,主要用来计数而不是用来表示字段类型 比number效率高
- number:数字类型
- char:定长字符串
- varchar2:变长字符串
- date:日期
- long:字符串,最长2GB
- boolean:布尔类型,可以取值true,false,null//最好给一初值
- 、----------变量的声明,使用 '%type'属性
- declare
- v_empno number();
- v_empno2 emp.empno%type;
- v_empno3 v_empno2%type;
- begin
- dbms_output.put_line('Test');
- end;
- /
- //使用%type属性,可以使变量的声明根据表字段的类型自动变换,省去了维护的麻烦,而且%type属性,可以用于变量身上
- 、---------------Table变量类型(table表示的是一个数组)-------------------
- declare
- type type_table_emp_empno is table of emp.empno%type index by binary_integer;
- v_empnos type_table type_table_empno;
- begin
- v_empnos() := ;
- v_empnos(-) :=;
- dbms_output.put_line(v_empnos(-));
- end;
- 、-----------------Record变量类型
- declare
- type type_record_dept is record
- (
- deptno dept.deptno%type,
- dname dept.dname%type,
- loc dept.loc%type
- );
- begin
- v_temp.deptno:=;
- v_temp.dname:='aaaa';
- v_temp.loc:='bj';
- dbms_output.put_line(v temp.deptno || ' ' || v temp.dname);
- end;
- 、-----------使用 %rowtype声明record变量
- declare
- v_temp dept%rowtype;
- begin
- v_temp.deptno:=;
- v_temp.dname:='aaaa';
- v_temp.loc:='bj';
- dbms_output.put_line(v temp.deptno || '' || v temp.dname)
- end;
- 、--------------sql%count 统计上一条sql语句更新的记录条数
- 、--------------sql语句的运用
- declare
- v_ename emp.ename%type;
- v_sal emp.sal%type;
- begin
- select ename,sal into v_ename,v_sal from emp where empno = ;
- dbms_output.put_line(v_ename || '' || v_sal);
- end;
- 、 -------- pl/sql语句的应用
- declare
- v_emp emp%rowtype;
- begin
- select * into v_emp from emp where empno=;
- dbms_output_line(v_emp.ename);
- end;
- 、-------------pl/sql语句的应用
- declare
- v_deptno dept.deptno%type := ;
- v_dname dept.dname%type :='aaa';
- v_loc dept.loc%type := 'bj';
- begin
- insert into dept2 values(v_deptno,v_dname,v_loc);
- commit;
- end;
- 、-----------------ddl语言,数据定义语言
- begin
- execute immediate 'create table T (nnn varchar(30) default ''a'')';
- end;
- 、------------------if else的运用
- declare
- v_sal emp.sal%type;
- begin
- select sal into v_sal from emp where empno = ;
- ) then
- dbms_output.put_line('low');
- elsif(v_sal > ) then
- dbms_output.put_line('middle');
- else
- dbms_output.put_line('height');
- end if;
- end;
- 、-------------------循环 =====do while
- declare
- i binary_integer := ;
- begin
- loop
- dbms_output.put_line(i);
- i := i + ;
- exit when (i>=);
- end loop;
- end;
- 、---------------------while
- declare
- j binary_integer := ;
- begin
- loop
- dbms_output.put_line(j);
- j:=j+;
- end loop;
- end;
- 、---------------------for
- begin
- .. loop
- dbms_output.put_line(k);
- end loop;
- .. loop
- dbms_output.put_line(k);
- end loop;
- end;
- 、-----------------------异常()
- declare
- v_temp number();
- begin
- select empno into v_temp from emp where empno = ;
- exception
- when too_many_rows then
- dbms_output.put_line('太多记录了');
- when others then
- dbms_output.put_line('error');
- end;
- 、-----------------------异常()
- declare
- v_temp number();
- begin
- select empno into v_temp from emp where empno = ;
- exception
- when no_data_found then
- dbms_output.put_line('太多记录了');
- end;
- 、----------------------创建序列
- create sequence seq_errorlog_id start with increment by ;
- 、-----------------------错误处理(用表记录:将系统日志存到数据库便于以后查看)
- 创建日志表:
- create table errorlog
- (
- id number primary key,
- errcode number,
- errmsg varchar2(),
- errdate date
- );
- declare
- v_deptno dept.deptno%type := ;
- v_errcode number;
- v_errmsg varchar2();
- begin
- delete from dept where deptno = v_deptno;
- commit;
- exception
- when others then
- rollback;
- v_errcode := SQLCODE;
- v_errmsg := SQLERRM;
- insert into errorlog values (seq_errorlog_id.nextval, v_errcode,v_errmsg, sysdate);
- commit;
- end;
- ---------------------PL/SQL中的重点cursor(游标)和指针的概念差不多
- declare
- cursor c is
- select * from emp; //此处的语句不会立刻执行,而是当下面的open c的时候,才会真正执行
- v_emp c%rowtype;
- begin
- open c;
- fetch c into v_emp;
- dbms_output.put_line(v_emp.ename); //这样会只输出一条数据 134将使用循环的方法输出每一条记录
- close c;
- end;
- ----------------------使用do while 循环遍历游标中的每一个数据
- declare
- cursor c is
- select * from emp;
- v_emp c%rowtype;
- begin
- open c;
- loop
- fetch c into v_emp;
- () exit when (c%notfound); //notfound是oracle中的关键字,作用是判断是否还有下一条数据
- () dbms_output.put_line(v_emp.ename); //(1)(2)的顺序不能颠倒,最后一条数据,不会出错,会把最后一条数据,再次的打印一遍
- end loop;
- close c;
- end;
- ------------------------while循环,遍历游标
- declare
- cursor c is
- select * from emp;
- v_emp emp%rowtype;
- begin
- open c;
- fetch c into v_emp;
- while(c%found) loop
- dbms_output.put_line(v_emp.ename);
- fetch c into v_emp;
- end loop;
- close c;
- end;
- --------------------------for 循环,遍历游标
- declare
- cursor c is
- select * from emp;
- begin
- for v_emp in c loop
- dbms_output.put_line(v_emp.ename);
- end loop;
- end;
- ---------------------------带参数的游标
- declare
- cursor c(v_deptno emp.deptno%type, v_job emp.job%type)
- is
- select ename, sal from emp where deptno=v_deptno and job=v_job;
- --v_temp c%rowtype;此处不用声明变量类型
- begin
- , 'click') loop
- dbms_output.put_line(v_temp.ename);
- end loop;
- end;
- -----------------------------可更新的游标
- declare
- cursor c //有点小错误
- is
- select * from emp2 for update;
- -v_temp c%rowtype;
- begin
- for v_temp in c loop
- ) then
- update emp2 set sal = sal * where current of c;
- ) then
- delete from emp2 where current of c;
- end if;
- end loop;
- commit;
- end;
- -----------------------------------procedure存储过程(带有名字的程序块)
- create or replace procedure p
- is--这两句除了替代declare,下面的语句全部都一样
- cursor c is
- select * from emp2 for update;
- begin
- for v_emp in c loop
- ) then
- update emp2 set sal = sal + where current of c;
- ) then
- update emp2 set sal = sal + where current of c;
- else
- update emp2 set sal = sal + where current of c;
- end if;
- end loop;
- commit;
- end;
- 执行存储过程的两种方法:
- ()exec p;(p是存储过程的名称)
- ()
- begin
- p;
- end;
- /
- -------------------------------带参数的存储过程
- create or replace procedure p
- (v_a in number, v_b number, v_ret out number, v_temp in out number)
- is
- begin
- if(v_a > v_b) then
- v_ret := v_a;
- else
- v_ret := v_b;
- end if;
- v_temp := v_temp + ;
- end;
- ----------------------调用
- declare
- v_a number := ;
- v_b number := ;
- v_ret number;
- v_temp number := ;
- begin
- p(v_a, v_b, v_ret, v_temp);
- dbms_output.put_line(v_ret);
- dbms_output.put_line(v_temp);
- end;
- ------------------删除存储过程
- drop procedure p;
- ------------------------创建函数计算个人所得税
- create or replace function sal_tax
- (v_sal number)
- return number
- is
- begin
- ) then
- return 0.10;
- elsif(v_sal <) then
- return 0.15;
- else
- return 0.20;
- end if;
- end;
- -----------------------------创建触发器(trigger) 触发器不能单独的存在,必须依附在某一张表上
- //创建触发器的依附表
- create table emp2_log
- (
- ename varchar2() ,
- eaction varchar2(),
- etime date
- );
- create or replace trigger trig
- after insert or delete or update on emp2 ---for each row 加上此句,每更新一行,触发一次,不加入则值触发一次
- begin
- if inserting then
- insert into emp2_log values(USER, 'insert', sysdate);
- elsif updating then
- insert into emp2_log values(USER, 'update', sysdate);
- elsif deleting then
- insert into emp2_log values(USER, 'delete', sysdate);
- end if;
- end;
- -------------------------------通过触发器更新数据
- create or replace trigger trig
- after update on dept
- for each row
- begin
- update emp set deptno =:NEW.deptno where deptno =: OLD.deptno;
- end;
- //////只编译不显示的解决办法 set serveroutput on;
- -------------------------------通过创建存储过程完成递归
- create or replace procedure p(v_pid article.pid%type,v_level binary_integer) is
- cursor c is select * from article where pid = v_pid;
- v_preStr varchar2() := '';
- begin
- ..v_leave loop
- v_preStr := v_preStr || '****';
- end loop;
- for v_article in c loop
- dbms_output.put_line(v_article.cont);
- ) then
- p(v_article.id);
- end if;
- end loop;
- end;
- -------------------------------查看当前用户下有哪些表---
- 首先,用这个用户登录然后使用语句:
- select * from tab;
- -----------------------------用Oracle进行分页!--------------
- 因为Oracle中的隐含字段rownum不支持'>'所以:
- select * from (
- select rownum rn, t.* from (
- select * from t_user where user_id <> 'root'
- ) t where rownum <
- ) where rn >
- ------------------------Oracle下面的清屏命令----------------
- clear screen; 或者 cle scr;
- -----------将创建好的guohailong的这个用户的密码改为abc--------------
- alter user guohailong identified by abc
- 当密码使用的是数字的时候可能会不行
尚学堂马士兵Oracle教程笔记的更多相关文章
- 尚学堂马士兵struts2 课堂笔记(一)
06_尚学堂马士兵_Struts2_Struts2_HelloWorld_5 <constant name="struts.devMode" value="true ...
- 尚学堂马士兵struts2 课堂笔记(四)
27 结果类型 主要就四种种 dispatch和rediret chain和drdirectaction <package name="resultTypes" namesp ...
- 尚学堂马士兵struts2 课堂笔记(三)
19-20 简单数据验证 例如 前台jsp 及struts.xml <a href="user/user!add?name=a" >添加用户</a> < ...
- 尚学堂马士兵struts2 课堂笔记(二)
14通配符问题 其实这个问题看一个例子就ok <package name="actions" extends="struts-default" names ...
- 马士兵 spring 视频笔记
课程内容 1. 面向接口(抽象)编程的概念与好处 2. IOC/DI的概念与好处 a) inversion of control b) dependen ...
- 学习java的视频资源(尚学堂)(比较老旧,但是还是挺好用)
本人新手,转入IT,一开始在学校的时候看过尚学堂 马士兵讲过的java基础视频教程,这次深入学习呢,就从百度云盘找了一整套的视频资源.之后越深入的学习呢,发现这些视频资源VeryCD上都发布了,地址 ...
- Hibernate 马士兵 学习笔记 (转)
目录(?)[+] 第2课 Hibernate UML图 第3课 风格 第4课 资源 第5课 环境准备 第6课 第一个示例Hibernate HelloWorld 第7课 建立Annotation版本的 ...
- 尚学堂JAVA基础学习笔记
目录 尚学堂JAVA基础学习笔记 写在前面 第1章 JAVA入门 第2章 数据类型和运算符 第3章 控制语句 第4章 Java面向对象基础 1. 面向对象基础 2. 面向对象的内存分析 3. 构造方法 ...
- 马士兵hibernate(原始笔记)
马士兵hibernate(原始笔记) 课程内容 1 HelloWorld a) Xml b) annotation 2 Hibernate原理模拟 - 什么是O/R ...
随机推荐
- Git 钩子
1. 概念概述 1.1. 安装钩子 1.2. 脚本语言 1.3. 钩子的作用域 2. 本地钩子 2.1. 预提交钩子 Pre-Commit 2.2. 准备提交信息钩子 Prepare Commit M ...
- VellCar(法拉利车模)
玩了近9小时,手都疼了,1322个零件真不是个小数字啊...不说了,上图纪念下:
- Storm系列(七)架构分析之Scheduler-调度器[DefaultScheduler]
Storm默认的任务调度器.实现如下: 1 (defn –prepare [this conf]) 2 (defn –schedule [this ^Topologies topologies ^ ...
- nyoj 168 房间安排(区间覆盖)
房间安排 时间限制:3000 ms | 内存限制:65535 KB 难度:2 描述 2010年上海世界博览会(Expo2010),是第41届世界博览会.于2010年5月1日至10月31日期间, ...
- 巧用TAG属性保存对象的指针
指针的数据类型是整型,一个指针就是一个整型的数值. 所以凡整型的变量(这个整型的变量可以是声明在INI文件中,也可以是声明在函数中的)也好,对象的整型的属性也好,都可以用来存储一个指针. 但对象往往没 ...
- [置顶] 使用U盘安装ubuntu系统
使用U盘安装ubuntu系统 在网上找了很多教程,都不起效,提示:“从光盘上读取数据出错”. 总结出了几个关键点. 首先,版本,Ubuntu 12.04 Server,一般的U盘安装都会报:“从光盘上 ...
- Web Service学习文旦下载
Web Service的学习暂且告一段落,因为毕竟只是对它作简要了解,至于其原理什么并不打算涉及. 在这里我提供下我之前文档的整理版本: http://kuai.xunlei.com/d/YlzvAG ...
- servlet三大作用域:request,session,application
javaweb开发中Servlet三大域对象的应用(request.session.application(ServletContext)). 1. request request是表示一个请求,只要 ...
- 【16】成对使用new和delete时要采取相同形式
简而言之,new时不带[],delete时也不带[]:new时带[],delete时也要带[].如果不匹配,要么造成多销毁对象,导致未定义行为:要么导致少销毁对象,导致内存泄漏.
- [HTTP] HTTP Verb
HEAD: HEAD / HTTP/1.1 nc.exmaple.com HEAD is a interesting method, it allow you to get a header of f ...