SQL> select deptno,ename,sal 2 from emp 3 order by deptno;DEPTNO ENAME SAL---------- ---------- ---------- 10 CLARK 2450 KING 5000 MILLER 1300 20 SMIT...
分类:
其他好文 时间:
2014-06-24 09:43:15
阅读次数:
189
/*--以下代码是对emp表进行显示宽度设置col empno for 9999;col ename for a10;col job for a10;col mgr for 9999; col hiredate for a12;col sal for 9999;col comm for 9999.....
分类:
数据库 时间:
2014-06-18 14:48:50
阅读次数:
242
/*以下代码是对emp表进行显示宽度设置 */col empno for 9999;col ename for a10;col job for a10;col mgr for 9999;col hiredate for a12;col sal for 9999;col comm for 9999;c...
分类:
数据库 时间:
2014-06-18 00:22:31
阅读次数:
371
/*以下代码是对emp表/dept表/salgrade表进行显示宽度设置 */col empno for 9999;col ename for a10;col job for a10;col mgr for 9999;col hiredate for a12;col sal for 9999;col...
分类:
数据库 时间:
2014-06-17 14:43:28
阅读次数:
416
在Oracle 10g下,来到scott用户下,分别以层次 1,2,3,4上的节点做实验:
当start with是根节点(level=1),要查其子节点,connect by pump和emp都是被扫描4次(总的层次)。
当start with是根节点(level=2),要查其子节点,connect by pump和emp被扫描3次。
当start wi...
分类:
数据库 时间:
2014-06-16 22:10:00
阅读次数:
232
1 left join
左外连接:查询结果以左表数据为准。假如左表有四条数据,右表有三条数据,则查询结果为四条,且都是左表中有的数据。例如:EMP表:SAL表:左连接select*fromEMPLeftjoinSALonEMP.ENAME=SAL.ENAME;左连接,表EMP是主表,因此查询结果是显...
分类:
数据库 时间:
2014-06-16 06:30:58
阅读次数:
246
drop table e1 purge;drop table e2 purge;create table e1 as select ename,sal,hiredatefrom emp where 9=0;create table e2 as select ename,deptno,mgrfrom ...
分类:
其他好文 时间:
2014-06-15 19:53:02
阅读次数:
249
SQL> var loc varchar2(30)SQL> exec :loc:='South San Francisco'PL/SQL procedure successfully completed.SQL> SELECT 2 emp.last_name,emp.first_name,j.job_title,d.department_name,l.city,l.state_province,l...
分类:
其他好文 时间:
2014-06-15 13:23:58
阅读次数:
263
mergemerge into copy_emp ce using emp eon (ce.empno
= e.empno)when matched then update set ename = e.enamewhen not matched then
insert (em...
分类:
数据库 时间:
2014-06-13 07:05:32
阅读次数:
207
本笔记继续使用dept部门表,emp员工表,一对多多对一双向映射。1 条件查询1.1 查询
员工表emp中 年龄eage小于30,月薪esal大于20000的员工姓名enamesql:select ename from emp where
eage?;hql: select ename from E...
分类:
系统相关 时间:
2014-06-10 16:55:49
阅读次数:
471