查询oracle数据库_sql学习笔记

oracle数据库学习  时间:2021-03-15  阅读:()

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。oracle-9isql(structured query language,结构化查询语言)

SQL语言按照功能可分为4大类

*DQL(数据查询语言):查询数据

*DDL(数据定义语言):建立/删除和修改数据对象

*DML(数据操纵语言):完成数据操作的命令,包括查询

*DCL(数据控制语言):控制对数据库的访问,服务器的关闭/启动等在Oracle 9i中为使用SQL语言提供了2个主要工具

*[SQL Plus]

*[SQL Plus Worksheet]select*from scott.emp--"用户名.数据表"的形式select distinct job from scott.emp--distinct保留字指在显示时去除相同的记录,select empno,ename,jobfrom scott.empwherejob='MANAGER'select empno,ename,salfrom scott.empwhere sal<=2500

--等于select*from scott.empwherejob='MANAGER'select*from scott.emp where sal=1100

--不等于select*from scott.empwherejob!='MANAGER'

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。select*from scott.emp where sal !=1100select*from scott.empwherejob^='MANAGER'select*from scott.emp where sal^=1100select*from scott.emp wherejob<>'MANAGER'select*from scott.emp where sal<>1100

--小于select*from scott.empwherejob<'MANAGER'select*from scott.emp where sal<

--大于select*from scott.empwherejob>'MANAGER'select*from scott.emp where sal>

--int列表select*from scott.empwhere sal in( ,1000,3000)select*from scott.empwherejob in('MANAGER', 'CLERK')select*from scott.empwhere sal not in( ,1000,3000)select*from scott.empwherejob not in('MANAGER', 'CLERK')

--betweenselect*from scott.empwhere sal not between and 3000select*from scott.empwherejob not between'MANAGER'and'CLERK'--l ikeselect*from scott.emp wherejob l ike'%M%' --代表包含M的字符串select*from scott.emp wherejob l ike'%M' --代表以M字符结尾的字符串

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。select*from scott.emp wherejob l ike'M%' --代表以M字符开头的字符串select*from scott.emp wherejob l ike'M_' --代表M开头的长度为2的字符串select empno,ename,jobfrom scott.empwherejob>='CLERK'orsal<=

"notjob='CLERK'"等价于"job<>'CLERK'"

--逻辑比较符and(与) select*from scott.empwherejob='MANAGER'and sal<>or(或) select* from scott.empwherejob!='MANAGER'or sal<>not(菲) select*from scott.emp where not job>='MANAGER'

--排序查询select empno,ename,job,salfrom scott.empwherejob<='CLERK'order byjobasc,sal desc--分组查询select empno,ename,job,salfrom scott.empgroup byjob,empno,ename,sal having sal<=select empno,ename,job,sal from scott.empwhere sal<= group byjob,empno,ename,sal/*where检查每条记录是否符合条件,having是检查分组后的各组是否满足条件.having语句只能配合group by

语句使用,没有group by时不能使用having,但可使用where*/select empno,ename,sal,mgr,sal+mgr from scott.emp --"常见'+' '-' '*' '/'"select empno编号,ename姓名,job工作,sal薪水from scott.emp

--无条件多表查询"笛卡尔"积的方式组合起来

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。select emp.empno,emp.ename,emp.deptno,dept.dname,dept. loc from scott.emp,scott.dept--等值多表查询select emp.empno,emp.ename,emp.deptno,dept.dname,dept. locfrom scott.emp,scott.deptwhere scott.emp.deptno=scott.dept.deptno --具有相同的属性(相同的数据类型/宽度和取值范围)

--非等值多表查询select emp.empno,emp.ename,emp.deptno,dept.dname,dept. locfrom scott.emp,scott.deptwhere scott.emp.deptno!=scott.dept.deptno and scott.emp.deptno=10

--嵌套查询

子查询能够嵌套多层,子查询操作的数据表能够是父查询不操作的数据表,子查询中不能有order by分组语句select emp.empno,emp.ename,emp.job,emp.salfrom scott.empwhere sal>=(select salfrom scott.empwhere ename='WARD')--查询薪水>=WARD薪水的员工select emp.empno,emp.ename,emp.job,emp.salfrom scott.empwhere sal in (select sal from scott.emp where ename='WARD') --查询薪水和WARD相等的员工

带any查询select emp.empno,emp.ename,emp.job,emp.sal

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。from scott.empwhere sal>any(select sal from scott.empwhere job='MANAGER')

/*select sal from scott.empwherejob='MANAGER' --查询到3各薪水值2975/2850/2450select emp.empno,emp.ename,emp.job,emp.salfrom scott.empwhere sal>2975 orsal>2850 or sal>2450 --执行any查询条件语句

*/

带some查询select emp.empno,emp.ename,emp.job,emp.salfrom scott.empwhere sal=some(select sal from scott.empwherejob='MANAGER')

/*select sal from scott.empwherejob='MANAGER' --查询到3各薪水值2975/2850/2450select emp.empno,emp.ename,emp.job,emp.salfrom scott.empwhere sal=2975 orsal=2850 orsal=2450 --执行some查询条件语句

*/

带al l查询select emp.empno,emp.ename,emp.job,emp.salfrom scott.empwhere sal>al l(select sal from scott.empwherejob='MANAGER')

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。

/*select sal from scott.empwherejob='MANAGER' --查询到3各薪水值2975/2850/2450select emp.empno,emp.ename,emp.job,emp.salfrom scott.empwheresal>2975andsal>2850and sal>2450 --执行al l查询条件语句

*/

带exists查询select emp.empno,emp.ename,emp.job,emp.salfrom scott.emp,scott.deptwhere exists(select *from scott.emp where scott.emp.deptno=scott.dept.deptno)

并操作查询

(select deptno from scott.emp)union(select deptno from scott.dept)

交操作查询

(select deptno from scott.emp) intersect (select deptno from scott.dept)

差操作查询--属于A且不属于B

(select deptno from scott.emp)minus(select deptno from scott.dept)

--用SQL进行函数查询

[cei l]函数:cei l(n),取大于等于数值n的最小整数select mgr,mgt/100,cei l(mgr/100)from scott.emp

[floor]函数:floor(n),取小于等于数值n的最大整数select mgr,mgt/100,floor(mgr/100)from scott.emp

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。[mod]函数:mod(m,n),取m整除n后的余数select mgr,mod(mgr,1000),mod(mgr,100),mod(mgr,10)from scott.emp[power]函数:power(m,n),取m的n次方select mgr,power(mgr,2),power(mgr,3)from scott.emp

[round]函数:round(m,n),四舍五入,保留n位select mgr,round(mgr/100,2),round(mgr/1000,2)from scott.emp

[sign]函数:sign(n),n>0,取1; n=0,取0;n<0,取-1select mgr,mgr-7800,sign(mgr-7800)from scott.emp

[a vg]函数:a vg(字段名),求平均值,要求字段为数据值select avg(mgr)平均薪水from scott.emp

[count]函数:count(字段名)或count(*),统计总数select count(*)记录总数from scott.empselect count(distinct job)工作类别总数from scott.emp

[min]函数:min(字段名),计算数值型字段最小数select min(sal)最少薪水from scott.emp

[max]函数:max(字段名),计算数值型字段最大数select max(sal)最高薪水from scott.emp

[sum]函数:sum(字段名),计算数值型字段总和select sum(sal)薪水总和from scott.emp

--记录的录入

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。

1.单行记录的录入insert into数据表 valuesinsert into scott.emp(empno,ename,hiredate)values(8000, 'JONE', '25-11月- ');

2.多行记录的录入insert into数据表

(select from数据表where条件)insert into scott.emp(empno,ename,hiredate)

(selectempno+100,ename,hiredatefrom scott.empwhere empon>=6999);

--表间数据复制createtable语句的功能就是创立新的数据表createtable scott.testas

(select distinct empno,ename,hiredatefrom scott.empwhereempno>=7000

);

--删除数据

使用[delete]命令能够删除数据,数据将存储在系统回滚段中,需要的时候能够回滚恢复;使用[truncate]命令能够删除整表数据但保留结构,数据不可恢复.

资料内容仅供您学习参考如有不当或者侵权请联系改正或者删除。deletefrom数据表where条件deletefrom scott.testwhere empno>=7500 and empno<=8000;truncate table scott.test;

--更新数据

[update]:update数据表set字段名1=新的赋值,字段名2=新的赋值where条件update scott.empset empno=8888,ename='TOM',hiredate='03-9月- 'whereempno=7566;update scott.empset sal=

(select sal+300 from scott.empwhereempno=7599

)whereempno=7599

易探云:香港大带宽/大内存物理机服务器550元;20Mbps带宽!三网BGP线路

易探云怎么样?易探云隶属于纯乐电商旗下网络服务品牌,香港NTT Communications合作伙伴,YiTanCloud Limited旗下合作云计算品牌,数十年云计算行业经验。发展至今,我们已凝聚起港内领先的开发和运维团队,积累起4年市场服务经验,提供电话热线/在线咨询/服务单系统等多种沟通渠道,7*24不间断服务,3分钟快速响应。目前,易探云提供香港大带宽20Mbps、16G DDR3内存、...

SugarHosts糖果主机商更换域名

昨天,遇到一个网友客户告知他的网站无法访问需要帮他检查到底是什么问题。这个同学的网站是我帮他搭建的,于是我先PING看到他的网站是不通的,开始以为是服务器是不是出现故障导致无法打开的。检查到他的服务器是有放在SugarHosts糖果主机商中,于是我登录他的糖果主机后台看到服务器是正常运行的。但是,我看到面板中的IP地址居然是和他网站解析的IP地址不同。看来官方是有更换域名。于是我就问 客服到底是什...

ZJI-全场八折优惠,香港服务器 600元起,还有日本/美国/韩国服务器

ZJI怎么样?ZJI是一家成立于2011年的商家,原名维翔主机,主要从事独立服务器产品销售,目前主打中国香港、日本、美国独立服务器产品,是一个稳定、靠谱的老牌商家。详情如下:月付/年付优惠码:zji??下物理服务器/VDS/虚拟主机空间订单八折终身优惠(长期有效)一、ZJI官网点击直达香港葵湾特惠B型 CPU:E5-2650L核心:6核12线程内存:16GB硬盘:480GB SSD带宽:5Mbps...

oracle数据库学习为你推荐
空间邮箱QQ邮箱的容量是多少neworiental上海新东方有几个校区,分别是那几个?12306崩溃iphone 12306网络错误中老铁路一带一路的火车是什么火车留学生认证留学生学历认证的意义是什么?18comic.fun18岁以后男孩最喜欢的网站www.haole012.com012qq.com真的假的www.bbb551.comHUNTA551第一个第二个妹子是谁呀??haole012.com012.com网站真的可以挂Q升级吗?javlibrary.com大家有没有在线图书馆WWW。QUESTIA。COM的免费帐号
广东虚拟主机 韩国虚拟主机 smartvps 2019年感恩节 云网数据 host1plus oneasiahost 河南移动邮件系统 seednet 100mbps 能外链的相册 1元域名 备案空间 什么是web服务器 iki 免费网络空间 网站加速 新疆服务器 register.com qq空间打开很慢 更多