Oracle使用(二)_where子句

/**
=,!=,<>,<,>,any,some,all

is null,is not null

between and

in(list),not in(list)

*/

-- =使用
select * from emp where deptno =20;

-- != 使用
select * from emp where deptno !=20;

-- <> 使用 表示不等于,效果等价!=

select * from emp where deptno <> 20;

-- <

select sal from emp where sal < 1500;

-- >
select sal from emp where sal > 1500;

-- <=
select sal from emp where sal <= 1500;

-- >=
select sal from emp where sal >= 1500;

-- any 满足任意any中任意条件即可

select sal from emp where sal >any(1000,1500,3000);

--some 等价any
select sal from emp where sal >some(1000,1500,3000);

-- all 要同时满足所有条件
select sal from emp where sal >all(1000,1500,3000);

-- is null,在sql语法中null表示特殊含义,查询的条件中null不等于数据库中null值
-- 想查数据库中空值要用 is null 或者is not null

-- 什么都查不出 null != null
select * from emp where comm = null;

-- 等于null
select * from emp where comm is null;

-- 不等于null
select * from emp where comm is not null;

-- between 在..之间的值,and用与连接两个条件

select * from emp where sal between 1500 and 3000;

select * from emp where sal >= 1500 and sal <=3000;

-- in(list)
select * from emp where deptno in(10,20);
-- 等价in(list)
select * from emp where deptno = 10 or deptno = 20;

/**
and 和or出现在同一个sql语句中,and优先级要高于or,
所以使用()将or条件包含以提高优先级
*/

-- not in(list) 查出不在in范围
select * from emp where deptno not in(10,20);

-- 等价not in(list)
select * from emp where deptno !=10 and deptno !=20;

-- 相当于双重循环 先查出emp表所有记录,再根据子查询过滤数据,
--本例子查询一直返回true所以没起到过滤效果,所以全部返回
--https://www.runoob.com/sql/sql-exists.html 起到过滤效果的例子
select * from emp where exists (select deptno from dept where deptno =10 or deptno = 20);

/**
exsits 子查询如果满足恒为true,那么外层数据就回全部返回
此时 子查询起不到过滤效果

and的优先级高于or,or需要括起来,否则还是永恒返回true起不到过滤效果
*/
select * from emp e where exists (select deptno from dept d where (deptno =10 or deptno = 20) and e.deptno=d.deptno);

/**
like()

_下划线,匹配一位数字或字母
%百分号,匹配一位或者多位数字或字母
使用like要慎重,效率比较低
使用like参考使用索引,但是不能以%开头
涉及到大文本检索 可使用框架
escape 自定转义字符义 lucence 、solr、 elastic search

*/
-- 查询以S开头的用户
select * from emp where ename like('S%');

-- 查询以字母S开头,倒数第二位为T的员工姓名
select * from emp where ename like('S%T_');

-- 查询以字母S开头,并包含字母T的员工姓名
select * from emp where ename like('S%T%');

-- 查询名字带有百分号的用户 escape 自定义转义字符
select * from emp where ename like('%%%') escape('');

/**
order by 进行升序排序

order by desc 降序排序

排序默认按孜然顺序排序的

数值:从小到大

字符串:按字典序

排序可指定多个字段,并且多个字段可采取不同的排序方式

order by相当于做了全排序,效率很低,如果排序字段很大,非常消耗内存,
需要在业务闲时做操作 12306凌晨不售票原因就是例子
*/

-- order by 排序 默认升序

select * from emp order by sal;

-- order by .. desc 降序
select * from emp order by sal desc;

-- 按员工姓名排序
select * from emp order by ename;
-- 多个字段排序时,会以第一个字段为主排序,其他为辅
select * from emp order by ename asc,sal desc;

/**
计算字段
为什么需要计算字段?
我们经常需要从数据库中检索出经过转换、计算、格式化的数据
计算字段不真实存在于数据表中
*/
-- 字符串连接
select 'my name is' || ename from emp;

-- concat 函数 完成字符串连接
select concat('my name is',ename) from emp;

-- 计算所有员工的年薪,会发现很多员工数据为空,原因null做任何运算都是null,需要进行转换
select ename,(e.sal+e.comm)*12 from emp e;

--- nvl 函数可将null默认值转为0
select ename,(nvl(e.sal,0)+nvl(e.comm,0))*12 from emp e;

--dual时oracle数据库中得虚拟表,没有实际数据,可用来测试
select 100+null from dual;

/**
并集
交集
全集
差集
*/
--A
select * from emp where deptno = 30;

--B
select * from emp where sal > 1000;

--并集 将A,B合并,不包含重复数据

select * from emp where deptno = 30 union
select * from emp where sal >1000;

--全集 将A,B合并,不去重

select * from emp where deptno = 30 union all
select * from emp where sal >1000;

-- 交集 AB公共部分

select * from emp where deptno = 30 intersect
select * from emp where sal >1000;

--差集 包含在A中,但不包含在B中的数据,跟A和B的顺序有关
select * from emp where deptno = 30 minus
select * from emp where sal >1000;

--查询部门名称位SALES和RESEARCH的雇员姓名、工资和部门编号
select ename,sal,deptno from emp where deptno in(select deptno from dept where dname ='SALES' or dname ='RESEARCH');

--使用exsists查询部门名称位SALES和RESEARCH的雇员姓名、工资和部门编号
select ename,sal,deptno from emp e where exists(select deptno from dept d where (dname ='SALES' or dname ='RESEARCH') and e.deptno = d.deptno);

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容

  • 1.简介 数据存储有哪些方式?电子表格,纸质文件,数据库。 那么究竟什么是关系型数据库? 目前对数据库的分类主要是...
    乔震阅读 1,699评论 0 2
  • 一、上堂回顾 1.概念​ 数据库管理系统,数据库,表​ SQL的分类:DDL、DML、DQL、DCL2.数据库的使...
    WenErone阅读 407评论 0 0
  • 一、99语法--表连接,rowid与rownum (一)99语法--表连接 1、交叉连接cross join --...
    JayWolf阅读 374评论 0 0
  • ①创建表空间创建用户以及用户授权 (1)创建表空间 --创建表工作空间 create tablespace ith...
    老婆就是要败家阅读 1,183评论 0 0
  • 16宿命:用概率思维提高你的胜算 以前的我是风险厌恶者,不喜欢去冒险,但是人生放弃了冒险,也就放弃了无数的可能。 ...
    yichen大刀阅读 6,032评论 0 4