基本查询:
链接语句: sqlplus scott/tiger@192.168.56.101:1521/orcl
SQL> --清屏
SQL> host cls (host clear)
SQL> --当前用户
SQL> show user
SQL> --当前用户下的表
SQL> select * from tab;
SQL> --员工表的结构
SQL> desc emp
SQL> --查询所有的员工信息
SQL> select * from emp;
SQL> --设置行宽(表的显示)
SQL> show linesize
linesize 80
SQL> set linesize 150
SQL> --设置列宽(表的显示)
SQL> col ename for a8
SQL> col sal for 9999
SQL> /
SQL> --c命令 change (出错后更改SQL语句)(或者使用eq编辑原语句)
SQL> 2
2* form emp
SQL> c /form/from
2* from emp
SQL> /
SQL中的列别名:
1:列名后面跟 as;
2:as可以直接省略:
3:别名的双引号也可以省略(但是省略引号之后不能在其中加空格之类的);
select empno as "员工号", ename "姓名", sal "月 薪", sal*12, comm, sal*12+nvl(comm,0) from emp;
distinct去掉重复记录
select distinct deptno from emp;
select distinct deptno, job from emp;(distinct作用于后面所有的列)
连接符: || 相当于 concat 函数
SQL> select concat('Hello',' World') from emp; (其后面必须查询一张表,一般使用 dual表(伪表) );
SQL> select 'Hello'||' World' from dual;
SQL> select ename||'的薪水是'||sal 信息 from emp;
在SQL语句中, 字符 和 日期 使用单引号包裹起来,且字符大小写敏感, 日期格式敏感.
SQL> --修改日期格式
SQL> select * from v$nls_parameters; (查看基本参数)
SQL> alter session|system set NLS_DATE_FORMAT='yyyy-mm-dd';(更改日期格式)
过滤(where)
SQL> --between and: 1. 含有边界 2. 小值在前 大值在后
SQL> --查询薪水1000~2000之间的员工
SQL> select * from emp where sal between and ;
SQL> --in 在集合中
SQL> select * from emp where deptno in (,); 查询10和20号部门的员工
select * from emp where deptno not in (,);查询不是10和20号部门的员工
like 模糊查询
查询名字中含有下划线的员工
SQL> elect * rom emp where ename like '%\_%' escape '\' ; (使用escape声明一个转义字符)
排序:
查询员工信息 按照月薪排序
SQL> select * from emp order by sal; (ASC;DESC)
(order by后面 可以跟 : 列, 表达式, 别名, 序号)
SQL> select empno, ename, sal, sal* 年薪 from emp order by sal* desc; (年薪,)
多个列排序: order by 作用于后面所有的列;desc只作用于离他最近的列
SQL> select * from emp order by deptno desc, sal desc;
单行函数:
通用函数
1.nvl(a,b) 如果a为null,那么返回b.
2.nvl2(a,b,c) 当a=null的时候,返回c;否则返回b
3.nullif(a,b) 当a=b的时候,返回null;否则返回a
3.coalesce(a,b,c...): 从左到右第一个不为null的值
字符函数
select lower('Hello World') 转小写, upper('Hello World') 转大写, initcap('hello world') 首字母大写 from dual;
substr(a,b,c) 从a中,第b位开始取,取c位(无c取到末尾)
select substr('Hello World',,) 子串 from dual;
instr(a,b) :查询b在a中的位置
select instr('Hello World','ll') 位置 from dual; (结果为3)
length 字符数 lengthb 字节数
select length('北京') 字符, lengthb('北京') 字节 from dual;
lpad 左填充 rpad 右填充
SQL> -- abcd ---> 10 位
select lpad('abcd', , '*') 左, rpad('abcd', , '*') 右 from dual;
trim 去掉前后指定的字符
select trim('H' from 'Hello WorldH') from dual;
replace(a,b,c) 将a中的b使用c替换
select replace('Hello World', 'l', '*') from dual;
number函数
round(a,b) 将a四舍五入留b为小数点
select round(45.926, ) 一, round(45.926, ) 二, round(45.926, ) 三,round(45.926, -) 四, round(45.926, -) 五 from dual;
trunc(a,b) 将a截断保留b为小数点
select trunc(45.926, ) 一, trunc(45.926, ) 二, trunc(45.926, ) 三,trunc(45.926, -) 四, trunc(45.926, -) 五 from dual;
date函数
查询当前时间
select sysdate from dual;
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;
select (sysdate-) 昨天,sysdate 今天,(sysdate+) 明天 from dual;
months_between 两个日期之间间隔的月数
select ename,hiredate,months_between(sysdate,hiredate) from emp;
add_months 当前日期下加上多少个月
select add_months(sysdate,) from dual;
last_day:日期所在月的最后一天
select last_day(sysdate) from dual;
next_day :某日期的下一个某一天(多有于分布式数据库,触发器,快照)
下一个星期日
select next_day(sysdate,'星期日') from dual;
显式类型转换
TO_NUMBER <> TO_CHAR(number,'format') 数字和字符串类型的转换
select to_char(sal, 'L9,999.99') from emp;
TO_DATE <> TO_CHAR('date','format') 时间和字符串类型的转换
select to_char(sysdate, 'yyyy-mm-dd hh24:mi:ss') from dual;
条件表达式(类似 if else ):
case :
select ename, job, sal 涨前,
case job when 'PRESIDENT' then sal+
when 'MANAGER' then sal+
else sal+
end 涨后
from emp;
decode:
select ename, job, sal 涨前,
decode(job, 'PRESIDENT', sal+,
'MANAGER', sal+,
sal+) 涨后
from emp;
多行函数:
count(); 计数
sum(); 求和
avg(); 平均值
max(); 最大值
min(); 最小值
wm_concat(); 列转行
select deptno,avg(sal) from emp group by deptno having avg(sal) > ;
: 在select中没有在 组函数中的列必须要在 group by 子句中
: where后面不能有 组函数, having后面可以有组函数.
group by 语句的增强:
select deptno,job,sum(sal) from emp group by deptno,job
+
select deptno,sum(sal) from emp group by deptno
+
select sum(sal) from emp
合成:
select deptno,job,sum(sal) from emp group by rollup(deptno,job);
作用: sql*plus报表
多表查询
等值连接(内连接)
select e.empno, e.ename, e.sal, d.dname from emp e, dept d where e.deptno = d.deptno;
不等值连接
select e.empno, e.ename ,e.sal, s.grade from emp e, salgrade s where e.sal between s.losal and s.hisal;
左外连接:当where e.deptno=d.deptno不成立的时候,等号左边的表任然被包含
写法:where e.deptno=d.deptno(+)
右外连接:当where e.deptno=d.deptno不成立的时候,等号右边的表任然被包含
写法: where e.deptno(+)=d.deptno
自连接
select e.ename 员工姓名, b.ename 老板姓名 from emp e, emp b where e.mgr=b.empno;
层次查询
select level,empno,ename,mgr from emp connect by prior empno=mgr start with mgr is null order by ;
子查询
注意的问题:
1. 括号
子查询(内查询)语句必须写在括号中
2. 合理的书写风格
子查询语句必须要有合理的书写规范
3. 可以在where select having from 后面 都可以使用子查询
select empno,ename,sal,(select job from emp where empno=) 第四列 from emp;
(select 子句中只能使用的单行子查询)
4. 不可以在group by后面使用子查询
5. 强调from后面的子查询
select * from (select empno,ename,sal from emp);
(性能同select empno,ename,sal from emp; 一样)
6. 主查询和子查询可以不是同一张表;只要子查询返回的结果 主查询可以使用 即可
select * from emp where deptno=(select deptno from dept where dname='SALES');
7. 一般不在子查询中排序;但在top-n分析问题中,必须对子查询排序(rownum为伪列)
select rownum,ename,sal from (select * from emp order by sal desc) where rownum<=;
8. 一般先执行子查询,再执行主查询;但相关子查询例外
相关子查询:将主查询中的值 作为参数传递给子查询
select empno,ename,sal,(select avg(sal) from emp where deptno=e.deptno) avgsal
from emp e where sal > (select avg(sal) from emp where deptno=e.deptno);
9. 单行子查询只能使用单行操作符;多行子查询只能使用多行操作符
在集合中
查询部门名称是SALES和ACCOUNTING的员工
select * from emp where deptno in (select deptno from dept where dname='SALES' or dname='ACCOUNTING');
any: 和集合中的任意一个值比较
查询工资比30号部门任意一个员工高的员工信息
select * from emp where sal > any (select sal from emp where deptno=);
all 和集合中的所有值比较
查询工资比30号部门所有员工高的员工信息
select * from emp where sal > all (select sal from emp where deptno=);
10.子查询中的null
分页:
select * from (select rownum r,e1.* from (select * from emp order by sal) e1 where rownum <=)
where r >=;