查询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

JUSTG提供俄罗斯和南非CN2 GIA主机年$49.99美元JUSTGgia南非cn2南非CN2justG

JUSTG,这个主机商第二个接触到,之前是有介绍到有提供俄罗斯CN2 GIA VPS主机活动的,商家成立时间不久看信息是2020年,公司隶属于一家叫AFRICA CLOUD LIMITED的公司,提供的产品为基于KVM架构VPS主机,数据中心在非洲(南非)、俄罗斯(莫斯科),国内访问双向CN2,线路质量不错。有很多服务商实际上都是国人背景的,有的用英文、繁体搭建的冒充老外,这个服务商不清楚是不是真...

虎跃云-物理机16H/32G/50M山东枣庄高防BGP服务器低至550元每月!

虎跃科技怎么样?虎跃科技(虎跃云)是一家成立于2017年的国内专业服务商,专业主营云服务器和独立服务器(物理机)高防机房有着高端华为T级清洗能力,目前产品地区有:山东,江苏,浙江等多地区云服务器和独立服务器,今天虎跃云给大家带来了优惠活动,为了更好的促销,枣庄高防BGP服务器最高配置16核32G仅需550元/月,有需要的小伙伴可以来看看哦!产品可以支持24H无条件退款(活动产品退款请以活动规则为准...

NameSilo域名优惠码活动

NameSilo是通过之前的感恩节优惠活动中认识到这家注册商的,于是今天早上花了点时间专门了解了NameSilo优惠码和商家的详细信息。该商家只销售域名,他们家的域名销售价格还是中规中矩的,没有像godaddy域名标价和使用优惠之后的价格悬殊很大,而且其特色就是该域名平台提供免费的域名停放、免费隐私保护等功能。namesilo新注册域名价格列表,NameSilo官方网站:www.namesilo....

oracle数据库学习为你推荐
硬盘工作原理硬盘的读写原理冯媛甑尸城女主角叫什么名字789se.com莫非现在的789mmm珍的com不管了www.vtigu.com如图所示的RT三角形ABC中,角B=90°(初三二次根式)30 如图所示的RT三角形ABC中,角B=90°,点p从点B开始沿BA边以1厘米每秒的速度向A移动;同时,点Q也从点B开始沿BC边以2厘米每秒的速度向点C移动。问:几秒后三角形PBQ的面积为35平方厘米?PQ的距离是多少www.bbb551.combbb是什么意思www.kaspersky.com.cn卡巴斯基中国总部设立在?www.hyyan.comDOTA6.51新手选什么英雄为好,请详细讲述出装备顺序,加点顺序,以及注意事项。谢谢www.175qq.com最炫的qq分组www.xvideos.com请问www.****.com.hk 和www.****.com.cn一样吗?ww.43994399??????????
全能虚拟主机 重庆虚拟主机 westhost yardvps php主机 12306抢票攻略 sub-process xfce 国外空间 搜狗12306抢票助手 绍兴高防 京东商城双十一活动 微信收钱 seednet 速度云 什么是服务器托管 免费测手机号 最好的qq空间 台湾google 国内域名 更多