Oracle单表的简单查询

时间:2021-09-30 14:34:47

Oracle单表的简单查询

查看表结构

desc emp;

查询所有列

Select * from emp;

查找所以部门编号(查指定的列)

select deptnofrom emp;

查找编号不同的部门编号(去重)

selectdistinct deptnofrom emp;

查找ename为SMITH的员工职位,工资,部门编号

select job,sal,deptnofrom emp t  where t.ename='SMITH';

查找员工的年薪

NVL( string1, replace_with)

功能:如果string1为NULL,则NVL函数返回replace_with的值,否则返回string1的值

+nvl(comm,0)*12as salsun , ename,sal,comm  from emp

Oracle单表的简单查询

别名的应用

select salas "工资"from emp

的员工工资

查找1982.1.1后入职的员工

select ename,hiredatefrom empwhere  hiredate>'1-1月-1982'

显示工资在2000到3000的员工

and sal<=3000;

模糊查询like,%,_

select ename,salfrom emp t   where t.enamelike'%S%';

select ename,salfrom emp t where t.enamelike'_O%';

in的使用

,1600)

is null的使用

select *from empwhere mgrisnull;