Oracle day01 select where关键字

时间:2023-03-09 17:27:56
Oracle day01  select where关键字

select关键字

作用:检索“列”

注意:1.select后面的列可以起别名(查询的显示结果)

1) 列名后面一个空格后添加别名(别名中不许有“空格”)

2) 列名后面一个空格后使用双引号添加别名

3) 列名后面一个空格后使用as关键字,在as后面添加别名

2.distinct用于对显示结果的去重

1) distinct必须放在select后面

2) 如果查询有多列,必须满足多列值都相同时,方可去重。

from关键字

作用:检索“表”

注意:检索的表后可以添加别名(别名不需要被双引号引起)

作用:检索“列”

--1.

--单行注释

--2.

    /*

    多行注释

    */

select

--select关键字第一个句型

--select [列1,列2, ... ,列N] from  表

--例:查询员工姓名和薪水

select emp.ename,emp.sal from emp;

--给表取别名

select ename,sal,e.deptno from emp e,dept d;

--oracle中,列名和表名默认不区分大小写,数据是区分大小写的

--给列取别名

--例:查询员工姓名和年薪

--方式一

select ename,sal*12年薪 from emp;

--方式二

select ename,sal*12 "ysal" from emp;   

--方式三

select ename,sal*12 as "ysal" from emp;

--例子:查询公司有哪些职位

--使用distinct去除显示重复的结果 必须放在Select关键字后面

select distinct ename,job from emp;

--distinct后面跟多个列时,必须保证多列都重复才可以去除重复内容

--distinct只能放在select的后面

--错误的SQL:select  ename,distinct job from emp;

(意思变成我想查找emp中 的ename 和distinct列)

Where

--where关键字

--作用:过滤行

Select *from表名 where  列名 。。。

  • --=,!=,<>,<,>,<=,>=,any,some,all
  • -- is null,is not null(判断是否为空  0.00 不等于空)
  • -- between x and y(在...and...之间)
  • --and、or 、not(与或非)
  • -- in(list),not in(list)(在,不是在)
  • -- exists(sub-query)、not exists(sub-query)
  • -- like _ ,%,escape ‘\‘ _\% escape ‘\’

--例:查询工资大于2000的员工信息

select * from emp where sal <= 

--=,!=,<>,<,>,<=,>=,any,some,all

--查询员工信息,条件:薪水要大于1000,薪水还要大于1500,薪水还要大于2000

select * from emp where sal != any(1000,1500,2000)

--some和any用法一样

--all表示所有

-- is null,is not null(判断是否为空  0.00 不等于空)

select * from emp where comm is not null;

--错误:select * from emp where comm = null

-- between x and y(在...and...之间)

--查询员工薪水在2000-3000的员工信息

select * from emp where sal between 2000 and 

--and、or 、not(与或非)

select * from emp where sal >= 2000 and sal <=

-- in(list),not in(list)(在,不是在)

--查询职务为MANAGER和ANALYST的员工信息

select * from emp where job in ('MANAGER','ANALYST')

--查询工资不为3000和5000的员工信息

select * from emp where sal not in (3000,5000)

-- exists(sub-query)、not exists(sub-query)(先查询括号内的若为ture则执行括号外的 )

select * from emp where exists(select * from dept where deptno != 50)
  • -- like _ ,%,escape ‘\‘ _\% escape ‘\’
  • --like关键字
  • --模糊查询,有两个特殊的符号"%" ,"_"
  • --“%”表示匹配零个或若干字符
  • --“_”表示匹配一个字符

--查询:员工姓名中含有“M”的员工信息

select * from emp where ename like '%M%'

--查询:员工姓名中第二个字母是“M”的员工信息

select * from emp where ename like '_M%'

--查询:员工姓名中第三个字母是“O”的员工信息

select * from emp where ename like '__O%'

--查询:员工姓名中倒数第二个字母为“E”的员工信息

select * from emp where ename like '%E_'

--查询:员工姓名中含有“%”的员工信息

select * from emp where ename like '%\%%' escape '\'

--插入一条信息:insert into emp(empno,ename) values(9527,'huan%an');

作业

[if !supportLists]1、[endif]查询部门编号为10的员工信息

select *from  emp where deptno =10 ;

[if !supportLists]2、[endif]查询年薪大于3万的人员的姓名与部门编号

select ename,sal,deptno from emp where sal*12 >30000 ;

[if !supportLists]3、[endif]查询佣金为null的人员姓名与工资

select ename,sal from emp where comm is null ;

[if !supportLists]4、[endif]查询工资大于1500且 and 含有佣金的人员姓名

select ename from emp where sal>1500 and comm is not null ;

[if !supportLists]5、[endif]查询工资大于1500或 or含有佣金的人员姓名

select ename from emp where sal>1500 or comm is not null ;

[if !supportLists]6、[endif]查询姓名里面含有S员工信息 工资、名称

select ename,sal from emp where ename like '%S%';

[if !supportLists]7、[endif]求姓名以J开头第二个字符O的员工姓名的与工资

select ename,sal from emp where ename like 'JO%';

[if !supportLists]8、[endif]求包含%的雇员姓名

select ename from emp where ename like '%\%%' escape '\';

9、使用in查询部门名称为 SALES 和 RESEARCH 的雇员姓名、工资、部门编号

    select e.ename,e.sal,e.deptno

    from emp e

    where e.deptno in(select d.deptno

                           from DEPT d

                           where d.dname ='SALES'or

                          d.dname = 'RESEARCH');

10、使用exists查询部门名称为SALES和RESEARCH 的雇员姓名、工资、部门编号

    select e.ename, e.sal, e.deptno

      from emp e

     where  exists (select d.deptno

                          from dept d

                         where (d.dname = 'SALES'

                            or d.dname = 'RESEARCH') and d.deptno = e.deptno);