1. 检查Oracle安装
  2. 首先,以超级管理员的身份登录oracle
  3. sqlplus sys/bjsxt as sysdba
  4. 然后,解除对scott用户的锁
  5. alter user scott account unlock;
  6. 那么这个用户名就能使用了。
  7. (默认全局数据库名orcl)
  8. 、select ename, sal *  from emp; //计算年薪
  9. 、select * from dual;  //计算一个比较纯的数据用dual表
  10. 、select sysdate from dual;  //查看当前的系统时间
  11. 、select ename, sal* anuual_sal from emp; //给搜索字段更改名称(双引号 keepFormat 别名有特殊字符,要加双引号)。
  12. 、任何含有空值的数学表达式,最后的计算结果都是空值。
  13. 、select ename||sal from emp;  //(将sal的查询结果转化为字符串,与ename连接到一起,相当于Java中的字符串连接)
  14. 、select ename||'afasjkj' from emp;   //字符串的连接
  15. 、select distinct deptno from emp;   //消除deptno字段重复的值
  16. 、select distinct deptno , job from emp; //将与这两个字段都重复的值去掉
  17. 、select * from emp where deptno=;   //(条件过滤查询)
  18. 、select * from emp where empno > ;  //大于 过滤判断
  19. 、select * from emp where empno <>   //不等于  过滤判断
  20. 、select * from emp where ename > 'cba';  //字符串比较,实际上比较的是每个字符的AscII值,与在Java中字符串的比较是一样的
  21. 、select ename, sal from emp where sal between  and ;  //(between and过滤,包含800 1500)
  22. 、select ename, sal, comm from emp where comm is null;  //(选择comm字段为null的数据)
  23. 、select ename, sal, comm from emp where comm is not null;  //(选择comm字段不为null的数据)
  24. 、select ename, sal, comm from emp where sal in (, ,);  //(in 表范围)
  25. 、select ename, sal, hiredate from emp where hiredate > '02-2月-1981'; //(只能按照规定的格式写)
  26. 、select ename, sal from emp where deptno = or sal >;
  27. 、select ename, sal from emp where deptno = and sal >;
  28. 、select ename, sal, comm from emp where sal not in (, ,);  //(可以对in指定的条件进行取反)
  29. 、select ename from emp where ename like '%ALL%';   //(模糊查询)
  30. 、select ename from emp where ename like '_A%';    //(取第二个字母是A的所有字段)
  31. 、select ename from emp where ename like '%/%%';   //(用转义字符/查询字段中本身就带%字段的)
  32. 、select ename from emp where ename like '%$%%' escape '$';   //(用转义字符/查询字段中本身就带%字段的)
  33. 、select * from dept order by deptno desc; (使用order by  desc字段 对数据进行降序排列 默认为升序asc);
  34. 、select * from dept where deptno <> order by deptno asc;   //(我们可以将过滤以后的数据再进行排序)
  35. 、select ename, sal, deptno from emp order by deptno asc, ename desc;   //(按照多个字段排序 首先按照deptno升序排列,当detpno相同时,内部再按照ename的降序排列)
  36. 、select lower(ename) from emp;  //(函数lower() 将ename搜索出来后全部转化为小写);
  37. 、select ename from emp where lower(ename) like '_a%';  //(首先将所搜索字段转化为小写,然后判断第二个字母是不是a)
  38. 、select substr(ename, , ) from emp;    //(使用函数substr() 将搜素出来的ename字段从第二个字母开始截,一共截3个字符)
  39. 、select chr() from dual;  //(函数chr() 将数字转化为AscII中相对应的字符)
  40. 、select ascii('A') from dual;  //(函数ascii()与32中的chr()函数是相反的 将相应的字符转化为相应的Ascii编码)                                                                                                                                                                                                                                                                                                                                             )
  41. 、select round(23.232) from dual;  //(函数round() 进行四舍五入操作)
  42. 、select round() from dual;  //(四舍五入后保留的小数位数 0 个位 -1 十位)
  43. 、select to_char(sal, '$99,999.9999')from emp;  //(加$符号加入千位分隔符,保留四位小数,没有的补零)
  44. 、select to_char(sal, 'L99,999.9999')from emp;  //(L 将货币转化为本地币种此处将显示¥人民币)
  45. 、select to_char(sal, 'L00,000.0000')from emp;  //(补零位数不一样,可到数据库执行查看)
  46. 、select to_char(hiredate, 'yyyy-MM-DD HH:MI:SS') from emp;  //(改变日期默认的显示格式)
  47. 、select to_char(sysdate, 'yyyy-MM-DD HH:MI:SS') from dual;  //(用12小时制显示当前的系统时间)
  48. 、select to_char(sysdate, 'yyyy-MM-DD HH24:MI:SS') from dual;  //(用24小时制显示当前的系统时间)
  49. 、select ename, hiredate from emp where hiredate > to_date('1981-2-20 12:24:45','YYYY-MM-DD HH24:MI:SS');   //(函数to-date 查询公司在所给时间以后入职的人员)
  50. 、select sal from emp where sal > to_number('$1,250.00', '$9,999.99');   //(函数to_number()求出这种薪水里带有特殊符号的)
  51. 、select ename, sal* +  nvl(comm,) from emp;   //(函数nvl() 求出员工的"年薪 + 提成(或奖金)问题")
  52. 、select max(sal) from emp;  // (函数max() 求出emp表中sal字段的最大值)
  53. 、select min(sal) from emp;  // (函数max() 求出emp表中sal字段的最小值)
  54. 、select avg(sal) from emp;  //(avg()求平均薪水);
  55. 、select to_char(avg(sal), '999999.99') from emp;   //(将求出来的平均薪水只保留2位小数)
  56. 、select round(avg(sal), ) from emp;  //(将平均薪水四舍五入到小数点后2位)
  57. 、select sum(sal) from emp;  //(求出每个月要支付的总薪水)
  58. /////////////////////////组函数(共5个):将多个条件组合到一起最后只产生一个数据//////min() max() avg() sum() count()/////////////////////////////
  59. 、select count(*) from emp;  //求出表中一共有多少条记录
  60. 、select count(*) from emp where deptno=;  //再要求一共有多少条记录的时候,还可以在后面跟上限定条件
  61. 、select count(distinct deptno) from emp;   //统计部门编号前提是去掉重复的值
  62. ////////////////////////聚组函数group by() //////////////////////////////////////
  63. 、select deptno, avg(sal) from emp group by deptno;  //按照deptno分组,查看每个部门的平均工资
  64. 、select max(sal) from emp group by deptno, job; //分组的时候,还可以按照多个字段进行分组,两个字段不相同的为一组
  65. 、select ename from emp where sal = (select max(sal) from emp); //求出
  66. 、select deptno, max(sal) from emp group by deptno; //搜素这个部门中薪水最高的的值
  67. //////////////////////////////////////////////////having函数对于group by函数的过滤 不能用where//////////////////////////////////////
  68. 、select deptno, avg(sal) from emp group by deptno having avg(sal) >; (order by )//求出每个部门的平均值,并且要 > 2000
  69. 、select avg(sal) from emp where sal > group by deptno having avg(sal) > order by avg(sal) desc;//求出sal>1200的平均值按照deptno分组,平均值要>1500最后按照sal的倒序排列
  70. 、select ename,sal from emp where sal > (select avg(sal) from emp);  //求那些人的薪水是在平均薪水之上的。
  71. 、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);  //查询每个部门中工资最高的那个人
  72. ///////////////////////////////等值连接//////////////////////////////////////
  73. 、select e1.ename, e2.ename from emp e1, emp e2 where e1.mgr = e2.empno;  //自连接,把一张表当成两张表来用
  74. 、select ename, dname from emp, dept;  //92年语法 两张表的连接 笛卡尔积。
  75. 、select ename, dname from emp cross join dept; //99年语法 两张表的连接用cross join
  76. 、select ename, dname from emp, dept where emp.deptno = dept.deptno; // 92年语法 表连接 + 条件连接
  77. 、select ename, dname from emp join dept on(emp.deptno = dept.deptno); // 新语法
  78. 、select ename,dname from emp join dept using(deptno); //与66题的写法是一样的,但是不推荐使用using : 假设条件太多
  79. ///////////////////////////////////////非等值连接///////////////////////////////////////////
  80. 、select ename,grade from emp e join salgrade s on(e.sal between s.losal and s.hisal); //两张表的连接 此种写法比用where更清晰
  81. 、select ename, dname, grade from emp e
  82. join dept d on(e.deptno = d.deptno)
  83. join salgrade s on (e.sal between s.losal and s.hisal)
  84. where ename not like '_A%';  //三张表的连接
  85. 、select e1.ename, e2.ename from emp e1 join emp e2 on(e1.mgr = e2.empno); //自连接第二种写法,同62
  86. 、select e1.ename, e2.ename from emp e1 left join emp e2 on(e1.mgr = e2.empno); //左外连接 把左边没有满足条件的数据也取出来
  87. 、select ename, dname from emp e right join dept d on(e.deptno = d.deptno); //右外连接
  88. 、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);//求每个部门平均薪水的等级
  89. 、select ename from emp where empno in (select mgr from emp); // 在表中搜索那些人是经理
  90. 、select sal from emp where sal not in(select distinct e1.sal from emp e1 join emp e2 on(e1.sal < e2.sal)); // 面试题 不用组函数max()求薪水的最大值
  91. 、select deptno, max_sal from
  92. (select avg(sal) max_sal,deptno from emp group by deptno)
  93. where max_sal =
  94. (select max(max_sal) from
  95. (select avg(sal) max_sal,deptno from emp group by deptno)
  96. );//求平均薪水最高的部门名称和编号。
  97. 、select t1.deptno, grade, avg_sal from
  98. (select deptno, grade, avg_sal from
  99. (select deptno, avg(sal) avg_sal from emp group by deptno) t
  100. join salgrade s on(t.avg_sal between s.losal and s.hisal)
  101. ) t1
  102. join dept on (t1.deptno = dept.deptno)
  103. where t1.grade =
  104. (
  105. select min(grade) from
  106. (select deptno, grade, avg_sal from
  107. (select deptno, avg(sal) avg_sal from emp group by deptno) t
  108. join salgrade s on(t.avg_sal between s.losal and s.hisal)
  109. )
  110. )//求平均薪水等级最低的部门的名称 哈哈 确实比较麻烦
  111. 、create view v$_dept_avg_sal_info as
  112. select deptno, grade, avg_sal from
  113. (select deptno, avg(sal) avg_sal from emp group by deptno) t
  114. join salgrade s on(t.avg_sal between s.losal and s.hisal);
  115. //视图的创建,一般以v$开头,但不是固定的
  116. 、select t1.deptno, grade, avg_sal from v$_dept_avg_sal_info t1
  117. join dept on (t1.deptno = dept.deptno)
  118. where t1.grade =
  119. (
  120. select min(grade) from
  121. v$_dept_avg_sal_info t1
  122. )
  123. )//求平均薪水等级最低的部门的名称 用视图,能简单一些,相当于Java中方法的封装
  124. 、---创建视图出现权限不足时候的解决办法:
  125. conn sys/admin as sysdba;
  126. 显示:连接成功 Connected
  127. grant create table, create view to scott;
  128. 显示: 授权成功 Grant succeeded
  129. 、-------求比普通员工最高薪水还要高的经理人的名称 -------
  130. select ename, sal from emp where empno in
  131. (select distinct mgr from emp where mgr is not null)
  132. and sal >
  133. (
  134. select max(sal) from emp where empno not in
  135. (select distinct mgr from emp where mgr is not null)
  136. )
  137. 、---面试题:比较效率
  138. select * from emp where deptno =  and ename like '%A%';//好,将过滤力度大的放在前面
  139. select * from emp where ename like '%A% and deptno = ;
  140. 、-----表的备份
  141. create table dept2 as select * from dept;
  142. 、-----插入数据
  143. insert into dept2 values(,'game','beijing');
  144. ----只对某个字段插入数据
  145. insert into dept2(deptno,dname) values(,'game2');
  146. 、-----将一个表中的数据完全插入另一个表中(表结构必须一样)
  147. insert into dept2 select * from dept;
  148. 、-----求前五名员工的编号和名称(使用虚字段rownum 只能使用 < 或 = 要使用 > 必须使用子查询)
  149. select empno,ename from emp where rownum <= ;
  150. 、----求名雇员以后的雇员名称--------
  151. select ename from (select rownum r,ename from emp) where r > ;
  152. 、----求薪水最高的前个人的薪水和名字---------
  153. select ename, sal from (select ename, sal from emp order by sal desc) where rownum <=;
  154. 、----求按薪水倒序排列后的第名到第名的员工的名字和薪水--------
  155. select ename, sal from
  156. (select ename, sal, rownum r from
  157. (select ename, sal from emp order by sal desc)
  158. )
  159. where r>= and r<=
  160. 、----------------创建新用户---------------
  161. 、backup scott//备份
  162. exp//导出
  163. 、create user
  164. create user guohailong identified(认证) by guohailong  default tablespace users quota(配额) 10M on users
  165. grant create session(给它登录到服务器的权限),create table, create view to guohailong
  166. import data
  167. imp
  168. 、-----------事务回退语句--------
  169. rollback;
  170. 、-----------事务确认语句--------
  171. commit;//此时再执行rollback无效
  172. 、当正常断开连接的时候例如exit,事务自动提交。  当非正常断开连接,例如直接关闭dos窗口或关机,事务自动提交
  173. 、有个表S,C,SC
  174. S(SNO,SNAME)代表(学号,姓名)
  175. C(CNO,CNAME,CTEACHER)代表(课号,课名,教师)
  176. SC(SNO,CNO,SCGRADE)代表(学号,课号成绩)
  177. 问题:
  178. ,找出没选过“黎明”老师的所有学生姓名。
  179. ,列出门以上(含门)不及格学生姓名及平均成绩。
  180. ,即学过号课程有学过号课所有学生的姓名。
  181. 答案:
  182. select sname from s join sc on(s.sno = sc.sno) join c on (sc.cno = c.cno) where cteacher <> '黎明';
  183. select sname where sno in (select sno from sc where scgrade <  group by sno having count(*) >=);
  184. select sname from s where sno in (select sno, from sc where cno= and cno in
  185. (select distinct sno from sc where cno = );
  186. )
  187. 、--------------创建表--------------
  188. create table stu
  189. (
  190. id number(),
  191. name varchar2() constraint stu_name_mm not null,
  192. sex number(),
  193. age number(),
  194. sdate date,
  195. grade number() ,
  196. ),
  197. email varchar2() unique
  198. );
  199. 、--------------给name字段加入 非空 约束,并给约束一个名字,若不取,系统默认取一个-------------
  200. create table stu
  201. (
  202. id number(),
  203. name varchar2() constraint stu_name_mm not null,
  204. sex number(),
  205. age number(),
  206. sdate date,
  207. grade number() ,
  208. ),
  209. email varchar2()
  210. );
  211. 、--------------给nameemail字段加入 唯一 约束 两个 null值 不为重复-------------
  212. create table stu
  213. (
  214. id number(),
  215. name varchar2() constraint stu_name_mm not null,
  216. sex number(),
  217. age number(),
  218. sdate date,
  219. grade number() ,
  220. ),
  221. email varchar2() unique
  222. );
  223. 、--------------两个字段的组合不能重复 约束:表级约束-------------
  224. create table stu
  225. (
  226. id number(),
  227. name varchar2() constraint stu_name_mm not null,
  228. sex number(),
  229. age number(),
  230. sdate date,
  231. grade number() ,
  232. ),
  233. email varchar2(),
  234. constraint stu_name_email_uni unique(email, name)
  235. );
  236. 、--------------主键约束-------------
  237. create table stu
  238. (
  239. id number(),
  240. name varchar2() constraint stu_name_mm not null,
  241. sex number(),
  242. age number(),
  243. sdate date,
  244. grade number() ,
  245. ),
  246. email varchar2(),
  247. constraint stu_id_pk primary key (id),
  248. constraint stu_name_email_uni unique(email, name)
  249. );
  250. ?、--------------外键约束   被参考字段必须是主键 -------------
  251. create table stu
  252. (
  253. id number(),
  254. name varchar2() constraint stu_name_mm not null,
  255. sex number(),
  256. age number(),
  257. sdate date,
  258. grade number() ,
  259. ) references class(id),
  260. email varchar2(),
  261. constraint stu_class_fk foreign key (class) references class(id),
  262. constraint stu_id_pk primary key (id),
  263. constraint stu_name_email_uni unique(email, name)
  264. );
  265. create table class
  266. (
  267. id number() primary key,
  268. name varchar2() not null
  269. );
  270. 、---------------修改表结构,添加字段------------------
  271. alter table stu add(addr varchar2());
  272. 、---------------删除字段--------------------------
  273. alter table stu drop (addr);
  274. 、---------------修改表字段的长度------------------
  275. alter table  stu modify (addr varchar2());//更改后的长度必须要能容纳原先的数据
  276. 、----------------删除约束条件----------------
  277. alter table stu drop constraint  约束名
  278. 、-----------修改表结构添加约束条件---------------
  279. alter table  stu add constraint stu_class_fk foreign key (class) references class (id);
  280. 、---------------数据字典表----------------
  281. desc dictionary;
  282. //数据字典表共有两个字段 table_name comments
  283. //table_name主要存放数据字典表的名字
  284. //comments主要是对这张数据字典表的描述
  285. 、---------------查看当前用户下面所有的表、视图、约束-----数据字典表user_tables---
  286. select table_name from user_tables;
  287. select view_name from user_views;
  288. select constraint_name from user-constraints;
  289. 、-------------索引------------------
  290. create index idx_stu_email on stu (email);// 在stu这张表的email字段上建立一个索引:idx_stu_email
  291. 、---------- 删除索引 ------------------
  292. drop index index_stu_email;
  293. 、---------查看所有的索引----------------
  294. select index_name from user_indexes;
  295. 、---------创建视图-------------------
  296. create view v$stu as selesct id,name,age from stu;
  297. 视图的作用: 简化查询 保护我们的一些私有数据,通过视图也可以用来更新数据,但是我们一般不这么用 缺点:要对视图进行维护
  298. 、-----------创建序列------------
  299. create sequence seq;//创建序列
  300. select seq.nextval from dual;// 查看seq序列的下一个值
  301. drop sequence seq;//删除序列
  302. 、------------数据库的三范式--------------
  303. ()、要有主键,列不可分
  304. ()、不能存在部分依赖:当有多个字段联合起来作为主键的时候,不是主键的字段不能部分依赖于主键中的某个字段
  305. ()、不能存在传递依赖
  306. ==============================================PL/SQL==========================
  307. 、-------------------在客户端输出helloworld-------------------------------
  308. set serveroutput on;//默认是off,设成on是让Oracle可以在客户端输出数据
  309. 、begin
  310. dbms_output.put_line('helloworld');
  311. end;
  312. /
  313. 、----------------pl/sql变量的赋值与输出----
  314. declare
  315. v_name varchar2();//声明变量v_name变量的声明以v_开头
  316. begin
  317. v_name := 'myname';
  318. dbms_output.put_line(v_name);
  319. end;
  320. /
  321. 、-----------pl/sql对于异常的处理(除数为)-------------
  322. declare
  323. v_num number := ;
  324. begin
  325. v_num := /v_num;
  326. dbms_output.put_line(v_num);
  327. exception
  328. when others then
  329. dbms_output.put_line('error');
  330. end;
  331. /
  332. 、----------变量的声明----------
  333. binary_integer:整数,主要用来计数而不是用来表示字段类型   比number效率高
  334. number:数字类型
  335. char:定长字符串
  336. varchar2:变长字符串
  337. date:日期
  338. long:字符串,最长2GB
  339. boolean:布尔类型,可以取值truefalsenull//最好给一初值
  340. 、----------变量的声明,使用 '%type'属性
  341. declare
  342. v_empno number();
  343. v_empno2 emp.empno%type;
  344. v_empno3 v_empno2%type;
  345. begin
  346. dbms_output.put_line('Test');
  347. end;
  348. /
  349. //使用%type属性,可以使变量的声明根据表字段的类型自动变换,省去了维护的麻烦,而且%type属性,可以用于变量身上
  350. 、---------------Table变量类型(table表示的是一个数组)-------------------
  351. declare
  352. type type_table_emp_empno is table of emp.empno%type index by binary_integer;
  353. v_empnos type_table type_table_empno;
  354. begin
  355. v_empnos() := ;
  356. v_empnos(-) :=;
  357. dbms_output.put_line(v_empnos(-));
  358. end;
  359. 、-----------------Record变量类型
  360. declare
  361. type type_record_dept is record
  362. (
  363. deptno dept.deptno%type,
  364. dname dept.dname%type,
  365. loc dept.loc%type
  366. );
  367. begin
  368. v_temp.deptno:=;
  369. v_temp.dname:='aaaa';
  370. v_temp.loc:='bj';
  371. dbms_output.put_line(v temp.deptno || ' ' || v temp.dname);
  372. end;
  373. 、-----------使用 %rowtype声明record变量
  374. declare
  375. v_temp dept%rowtype;
  376. begin
  377. v_temp.deptno:=;
  378. v_temp.dname:='aaaa';
  379. v_temp.loc:='bj';
  380. dbms_output.put_line(v temp.deptno || '' || v temp.dname)
  381. end;
  382. 、--------------sql%count 统计上一条sql语句更新的记录条数
  383. 、--------------sql语句的运用
  384. declare
  385. v_ename emp.ename%type;
  386. v_sal emp.sal%type;
  387. begin
  388. select ename,sal into v_ename,v_sal from emp where empno = ;
  389. dbms_output.put_line(v_ename || '' || v_sal);
  390. end;
  391. 、  -------- pl/sql语句的应用
  392. declare
  393. v_emp emp%rowtype;
  394. begin
  395. select * into v_emp from emp where empno=;
  396. dbms_output_line(v_emp.ename);
  397. end;
  398. 、-------------pl/sql语句的应用
  399. declare
  400. v_deptno dept.deptno%type := ;
  401. v_dname dept.dname%type :='aaa';
  402. v_loc dept.loc%type := 'bj';
  403. begin
  404. insert into dept2 values(v_deptno,v_dname,v_loc);
  405. commit;
  406. end;
  407. 、-----------------ddl语言,数据定义语言
  408. begin
  409. execute immediate 'create table T (nnn varchar(30) default ''a'')';
  410. end;
  411. 、------------------if else的运用
  412. declare
  413. v_sal emp.sal%type;
  414. begin
  415. select sal into v_sal from emp where empno = ;
  416. ) then
  417. dbms_output.put_line('low');
  418. elsif(v_sal > ) then
  419. dbms_output.put_line('middle');
  420. else
  421. dbms_output.put_line('height');
  422. end if;
  423. end;
  424. 、-------------------循环 =====do while
  425. declare
  426. i binary_integer := ;
  427. begin
  428. loop
  429. dbms_output.put_line(i);
  430. i := i + ;
  431. exit when (i>=);
  432. end loop;
  433. end;
  434. 、---------------------while
  435. declare
  436. j binary_integer := ;
  437. begin
  438.  loop
  439. dbms_output.put_line(j);
  440. j:=j+;
  441. end loop;
  442. end;
  443. 、---------------------for
  444. begin
  445. .. loop
  446. dbms_output.put_line(k);
  447. end loop;
  448. .. loop
  449. dbms_output.put_line(k);
  450. end loop;
  451. end;
  452. 、-----------------------异常()
  453. declare
  454. v_temp number();
  455. begin
  456. select empno into v_temp from emp where empno = ;
  457. exception
  458. when too_many_rows then
  459. dbms_output.put_line('太多记录了');
  460. when others then
  461. dbms_output.put_line('error');
  462. end;
  463. 、-----------------------异常()
  464. declare
  465. v_temp number();
  466. begin
  467. select empno into v_temp from emp where empno = ;
  468. exception
  469. when no_data_found then
  470. dbms_output.put_line('太多记录了');
  471. end;
  472. 、----------------------创建序列
  473. create sequence seq_errorlog_id start with  increment by ;
  474. 、-----------------------错误处理(用表记录:将系统日志存到数据库便于以后查看)
  475. 创建日志表:
  476. create table errorlog
  477. (
  478. id number primary key,
  479. errcode number,
  480. errmsg varchar2(),
  481. errdate date
  482. );
  483. declare
  484. v_deptno dept.deptno%type := ;
  485. v_errcode  number;
  486. v_errmsg varchar2();
  487. begin
  488. delete from dept where deptno = v_deptno;
  489. commit;
  490. exception
  491. when others then
  492. rollback;
  493. v_errcode := SQLCODE;
  494. v_errmsg := SQLERRM;
  495. insert into errorlog values (seq_errorlog_id.nextval, v_errcode,v_errmsg, sysdate);
  496. commit;
  497. end;
  498. ---------------------PL/SQL中的重点cursor(游标)和指针的概念差不多
  499. declare
  500. cursor c is
  501. select * from emp; //此处的语句不会立刻执行,而是当下面的open c的时候,才会真正执行
  502. v_emp c%rowtype;
  503. begin
  504. open c;
  505. fetch c into v_emp;
  506. dbms_output.put_line(v_emp.ename); //这样会只输出一条数据 134将使用循环的方法输出每一条记录
  507. close c;
  508. end;
  509. ----------------------使用do while  循环遍历游标中的每一个数据
  510. declare
  511. cursor c is
  512. select * from emp;
  513. v_emp c%rowtype;
  514. begin
  515. open c;
  516. loop
  517. fetch c into v_emp;
  518. () exit when (c%notfound);  //notfound是oracle中的关键字,作用是判断是否还有下一条数据
  519. () dbms_output.put_line(v_emp.ename);  //(1)(2)的顺序不能颠倒,最后一条数据,不会出错,会把最后一条数据,再次的打印一遍
  520. end loop;
  521. close c;
  522. end;
  523. ------------------------while循环,遍历游标
  524. declare
  525. cursor c is
  526. select * from emp;
  527. v_emp emp%rowtype;
  528. begin
  529. open c;
  530. fetch c into v_emp;
  531. while(c%found) loop
  532. dbms_output.put_line(v_emp.ename);
  533. fetch c into v_emp;
  534. end loop;
  535. close c;
  536. end;
  537. --------------------------for 循环,遍历游标
  538. declare
  539. cursor c is
  540. select * from emp;
  541. begin
  542. for v_emp in c loop
  543. dbms_output.put_line(v_emp.ename);
  544. end loop;
  545. end;
  546. ---------------------------带参数的游标
  547. declare
  548. cursor c(v_deptno emp.deptno%type, v_job emp.job%type)
  549. is
  550. select ename, sal from emp where deptno=v_deptno and job=v_job;
  551. --v_temp c%rowtype;此处不用声明变量类型
  552. begin
  553. , 'click') loop
  554. dbms_output.put_line(v_temp.ename);
  555. end loop;
  556. end;
  557. -----------------------------可更新的游标
  558. declare
  559. cursor c  //有点小错误
  560. is
  561. select * from emp2 for update;
  562. -v_temp c%rowtype;
  563. begin
  564. for v_temp in c loop
  565. ) then
  566. update emp2 set sal = sal *  where current of c;
  567. ) then
  568. delete from emp2 where current of c;
  569. end if;
  570. end loop;
  571. commit;
  572. end;
  573. -----------------------------------procedure存储过程(带有名字的程序块)
  574. create or replace procedure p
  575. is--这两句除了替代declare,下面的语句全部都一样
  576. cursor c is
  577. select * from emp2 for update;
  578. begin
  579. for v_emp in c loop
  580. ) then
  581. update emp2 set sal = sal + where current of c;
  582. ) then
  583. update emp2 set sal =  sal +  where current of c;
  584. else
  585. update emp2 set sal = sal +  where current of c;
  586. end if;
  587. end loop;
  588. commit;
  589. end;
  590. 执行存储过程的两种方法:
  591. ()exec p;(p是存储过程的名称)
  592. ()
  593. begin
  594. p;
  595. end;
  596. /
  597. -------------------------------带参数的存储过程
  598. create or replace procedure p
  599. (v_a in number, v_b number, v_ret out number, v_temp in out number)
  600. is
  601. begin
  602. if(v_a > v_b) then
  603. v_ret := v_a;
  604. else
  605. v_ret := v_b;
  606. end if;
  607. v_temp := v_temp + ;
  608. end;
  609. ----------------------调用
  610. declare
  611. v_a  number := ;
  612. v_b  number := ;
  613. v_ret number;
  614. v_temp number := ;
  615. begin
  616. p(v_a, v_b, v_ret, v_temp);
  617. dbms_output.put_line(v_ret);
  618. dbms_output.put_line(v_temp);
  619. end;
  620. ------------------删除存储过程
  621. drop procedure p;
  622. ------------------------创建函数计算个人所得税
  623. create or replace function sal_tax
  624. (v_sal  number)
  625. return number
  626. is
  627. begin
  628. ) then
  629. return 0.10;
  630. elsif(v_sal <) then
  631. return 0.15;
  632. else
  633. return 0.20;
  634. end if;
  635. end;
  636. -----------------------------创建触发器(trigger)  触发器不能单独的存在,必须依附在某一张表上
  637. //创建触发器的依附表
  638. create table emp2_log
  639. (
  640. ename varchar2() ,
  641. eaction varchar2(),
  642. etime date
  643. );
  644. create or replace trigger trig
  645. after insert or delete or update on emp2 ---for each row 加上此句,每更新一行,触发一次,不加入则值触发一次
  646. begin
  647. if inserting then
  648. insert into emp2_log values(USER, 'insert', sysdate);
  649. elsif updating then
  650. insert into emp2_log values(USER, 'update', sysdate);
  651. elsif deleting then
  652. insert into emp2_log values(USER, 'delete', sysdate);
  653. end if;
  654. end;
  655. -------------------------------通过触发器更新数据
  656. create or replace trigger trig
  657. after update on dept
  658. for each row
  659. begin
  660. update emp set deptno =:NEW.deptno where deptno =: OLD.deptno;
  661. end;
  662. //////只编译不显示的解决办法 set serveroutput on;
  663. -------------------------------通过创建存储过程完成递归
  664. create or replace procedure p(v_pid article.pid%type,v_level binary_integer) is
  665. cursor c is select * from article where pid = v_pid;
  666. v_preStr varchar2() := '';
  667. begin
  668. ..v_leave loop
  669. v_preStr := v_preStr || '****';
  670. end loop;
  671. for v_article in c loop
  672. dbms_output.put_line(v_article.cont);
  673. ) then
  674. p(v_article.id);
  675. end if;
  676. end loop;
  677. end;
  678. -------------------------------查看当前用户下有哪些表---
  679. 首先,用这个用户登录然后使用语句:
  680. select * from tab;
  681. -----------------------------用Oracle进行分页!--------------
  682. 因为Oracle中的隐含字段rownum不支持'>'所以:
  683. select * from (
  684. select rownum rn, t.* from (
  685. select * from t_user where user_id <> 'root'
  686. ) t where rownum <
  687. ) where rn >
  688. ------------------------Oracle下面的清屏命令----------------
  689. clear screen; 或者 cle scr;
  690. -----------将创建好的guohailong的这个用户的密码改为abc--------------
  691. alter user guohailong identified by abc
  692. 当密码使用的是数字的时候可能会不行

尚学堂马士兵Oracle教程笔记的更多相关文章

  1. 尚学堂马士兵struts2 课堂笔记(一)

    06_尚学堂马士兵_Struts2_Struts2_HelloWorld_5 <constant name="struts.devMode" value="true ...

  2. 尚学堂马士兵struts2 课堂笔记(四)

    27 结果类型 主要就四种种 dispatch和rediret chain和drdirectaction <package name="resultTypes" namesp ...

  3. 尚学堂马士兵struts2 课堂笔记(三)

    19-20 简单数据验证 例如 前台jsp 及struts.xml <a href="user/user!add?name=a" >添加用户</a> < ...

  4. 尚学堂马士兵struts2 课堂笔记(二)

    14通配符问题 其实这个问题看一个例子就ok <package name="actions" extends="struts-default" names ...

  5. 马士兵 spring 视频笔记

    课程内容 1.       面向接口(抽象)编程的概念与好处 2.       IOC/DI的概念与好处 a)       inversion of control b)       dependen ...

  6. 学习java的视频资源(尚学堂)(比较老旧,但是还是挺好用)

    本人新手,转入IT,一开始在学校的时候看过尚学堂 马士兵讲过的java基础视频教程,这次深入学习呢,就从百度云盘找了一整套的视频资源.之后越深入的学习呢,发现这些视频资源VeryCD上都发布了,地址 ...

  7. Hibernate 马士兵 学习笔记 (转)

    目录(?)[+] 第2课 Hibernate UML图 第3课 风格 第4课 资源 第5课 环境准备 第6课 第一个示例Hibernate HelloWorld 第7课 建立Annotation版本的 ...

  8. 尚学堂JAVA基础学习笔记

    目录 尚学堂JAVA基础学习笔记 写在前面 第1章 JAVA入门 第2章 数据类型和运算符 第3章 控制语句 第4章 Java面向对象基础 1. 面向对象基础 2. 面向对象的内存分析 3. 构造方法 ...

  9. 马士兵hibernate(原始笔记)

    马士兵hibernate(原始笔记) 课程内容 1        HelloWorld a)   Xml b)   annotation 2        Hibernate原理模拟 - 什么是O/R ...

随机推荐

  1. Git 钩子

    1. 概念概述 1.1. 安装钩子 1.2. 脚本语言 1.3. 钩子的作用域 2. 本地钩子 2.1. 预提交钩子 Pre-Commit 2.2. 准备提交信息钩子 Prepare Commit M ...

  2. VellCar(法拉利车模)

    玩了近9小时,手都疼了,1322个零件真不是个小数字啊...不说了,上图纪念下:

  3. Storm系列(七)架构分析之Scheduler-调度器[DefaultScheduler]

    Storm默认的任务调度器.实现如下: 1  (defn –prepare [this conf]) 2  (defn –schedule [this ^Topologies topologies ^ ...

  4. nyoj 168 房间安排(区间覆盖)

    房间安排 时间限制:3000 ms  |  内存限制:65535 KB 难度:2   描述 2010年上海世界博览会(Expo2010),是第41届世界博览会.于2010年5月1日至10月31日期间, ...

  5. 巧用TAG属性保存对象的指针

    指针的数据类型是整型,一个指针就是一个整型的数值. 所以凡整型的变量(这个整型的变量可以是声明在INI文件中,也可以是声明在函数中的)也好,对象的整型的属性也好,都可以用来存储一个指针. 但对象往往没 ...

  6. [置顶] 使用U盘安装ubuntu系统

    使用U盘安装ubuntu系统 在网上找了很多教程,都不起效,提示:“从光盘上读取数据出错”. 总结出了几个关键点. 首先,版本,Ubuntu 12.04 Server,一般的U盘安装都会报:“从光盘上 ...

  7. Web Service学习文旦下载

    Web Service的学习暂且告一段落,因为毕竟只是对它作简要了解,至于其原理什么并不打算涉及. 在这里我提供下我之前文档的整理版本: http://kuai.xunlei.com/d/YlzvAG ...

  8. servlet三大作用域:request,session,application

    javaweb开发中Servlet三大域对象的应用(request.session.application(ServletContext)). 1. request request是表示一个请求,只要 ...

  9. 【16】成对使用new和delete时要采取相同形式

    简而言之,new时不带[],delete时也不带[]:new时带[],delete时也要带[].如果不匹配,要么造成多销毁对象,导致未定义行为:要么导致少销毁对象,导致内存泄漏.

  10. [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 ...