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);
Oracle day01 select where关键字的更多相关文章
- Oracle中使用escape关键字实现like匹配特殊字符,以及&字符的转义
转:http://blog.chinaunix.net/uid-26896647-id-3433968.html 问题描述:如果在一个表中的一个字段上存在'&', '_', '%'这样的特 ...
- oracle实现like多关键字查询
oracle实现like多关键字查询: select * from contract_info tt where 1=1 and REGEXP_LIKE(tt.contract_name,'关键字1| ...
- 数据库Oracle的select用法(部分)
Oracle的select用法(部分): 1.查询所有: select * from employees; 2.加上where子句:用选择限制行 select * from employees whe ...
- Oracle【select from 语句】
Oracle[select from 语句] 1.select基本功能介绍1)投影操作:结果集是源表中的部分“列”2)选择操作:结果集是源表中的部分“行”3)选择操作+投影操作:结果集是源表中的部分 ...
- ORACLE-SELECT学习
(一)select格式:SELECT [ ALL | DISTINCT ] <字段表达式1[,<字段表达式2[,…] FROM <表名1>,<表名2>[,…] [W ...
- Oracle 数据库(oracle Database)Select 多表关联查询方式
Oracle数据库中Select语句语法及介绍 SELECT [ ALL | DISTINCT ] <字段表达式1[,<字段表达式2[,…] FROM <表名1>,<表名 ...
- {MySQL的逻辑查询语句的执行顺序}一 SELECT语句关键字的定义顺序 二 SELECT语句关键字的执行顺序 三 准备表和数据 四 准备SQL逻辑查询测试语句 五 执行顺序分析
MySQL的逻辑查询语句的执行顺序 阅读目录 一 SELECT语句关键字的定义顺序 二 SELECT语句关键字的执行顺序 三 准备表和数据 四 准备SQL逻辑查询测试语句 五 执行顺序分析 一 SEL ...
- 解析oracle对select加锁的方法以及锁的查询 转
转自 https://www.jb51.net/article/37587.htm 本篇文章是对oracle对select加锁的方法以及锁的查询进行了详细的分析介绍,需要的朋友参考下 解析oracle ...
- Oracle中select使用别名
1 .将字段用as转换成别名. 2 .直接在字段的名字后面跟别名. 3 .在字段后面用双引号引起的别名. 我的朋友 大鬼不动 最近访客 fhwlj kochiyas 大極星 Alz__ deser ...
随机推荐
- vue组件之间的传值方式
一.父组件向子组件传值方式 1.1父组件向子组件传数据方式 <!DOCTYPE html> <html lang="en"> <head> &l ...
- 关于Django字段类型中 blank和null的区别
blank 设置为True时,字段可以为空.设置为False时,字段是必须填写的.字符型字段CharField和TextField是用空字符串来存储空值的. 如果为True,字段允许为空,默认不允许. ...
- 为bootstrap+angularJs打造的表格代码生成器
private void btnCreateCode_Click(object sender, EventArgs e) { string objName = txtObjName.Text; if ...
- 记录 制作校园网登陆脚本 python编写 附源码
‘’‘ 首先我们分析一下 1.需要本机的IP 使用 socket 获取 2.需要向服务器提交的数据 构造请求数据 并分析数据可替换 3.检测登陆成功 检测登陆是否成功 ’‘’ 获取IP 这样会返回 本 ...
- gdbserver移植到DM368板子上的过程 以及segment fault problem
问题描述 我在PC机上安装了gdbserver,但是移植到板子上后却出现了问题.运行不了,显示错误:"segment fault". 决定重新在另一台虚拟机上gdbserver. ...
- 批处理修改IP
1. 单次修改IP,批处理文件 newIP.bat @echo =========== Changing to IP : 222.192.41.%1 netsh interface ip set ad ...
- 使用Nginx做图片服务器时候,配置之后图片访问一直是 404问题解决
我的错误配置是: 服务器文件根地址: 想通过浏览器输入这个地址访问到图片: 但是会发现文件找不到会一直404,原因是根路径配置错误,来看下root路径原理: root 配置的意思是,会在root配置的 ...
- 参数验证 @Validated 和 @Valid 的区别
来源:blog.csdn.net/qq_27680317/article/details/79970590 整编:Java技术栈(公众号ID:javastack) Spring Validation验 ...
- BBS论坛(一)
1.1.项目结构搭建 (1)创建flask项目Perfect_bbs,然后搭建项目结构如下: (2)构建蓝图 cms/views.py # cmd/views.py from flask import ...
- qt cef嵌入web(二)
在qt cef嵌入web文章中已经讲述了怎么把cef页面嵌入到qt程序中,但是这样并不完美,因为如果需要在多个窗口上创建cef浏览器部件的话,在 消息监听部分没有办法做区分多个浏览器事件,在这篇文章中 ...