AI智能
改变未来

oracle_day01

安装遇到的问题1.虚拟机重装问题,拷贝资源问题2.虚拟机配置网段(本机、虚拟机、vw)3.安装Oracle数据库4.连接数据库(plsql配置2个,Oracle的配和)5.环境变量(第二天启动电脑就好了)6.乱码问题中文乱码问题解决1.查看服务器端编码select userenv(\'language\') from dual;我实际查到的结果为:AMERICAN_AMERICA.ZHS16GBK2.执行语句 select * from V$NLS_PARAMETERS查看第一行中PARAMETER项中为NLS_LANGUAGE 对应的VALUE项中是否和第一步得到的值一样。如果不是,需要设置环境变量.否则PLSQL客户端使用的编码和服务器端编码不一致,插入中文时就会出现乱码.3.设置环境变量计算机->属性->高级系统设置->环境变量->新建设置变量名:NLS_LANG,变量值:第1步查到的值, 我的是	AMERICAN_AMERICA.ZHS16GBK4.重新启动PLSQL,插入数据正常

创建表空间

itcast 为表空间名称datafile  指定表空间对应的数据文件size  后定义的是表空间的初始大小 autoextend on自动增长 ,当表空间存储都占满时,自动增长next 后指定的是一次自动增长的大小。
--创建表空间create tablespace itheima	--表空间不用引号datafile \'c:\\itheima.dbf\'size 100mautoextend onnext 10m;--删除表空间drop tablespace itheima;

创建用户/授权

--创建用户create user itheimaidentified by itheimadefault tablespace itheima;--给用户授权,才能登录--oracle数据库中常用角色connect--连接角色,基本角色resource--开发者角色dba--超级管理员角色--给itheima用户授予dba角色grant dba to itheima;---切换到itheima用户下

修改表(重命名,删除带column)

---创建一个person表create table person(pid number(20),pname varchar2(10));---修改表结构---添加一列alter table person add (gender number(1));---修改列类型alter table person modify gender char(1);---修改列名称alter table person rename column gender to sex;---删除一列alter table person drop column sex;---查询表中记录select * from person;----添加一条记录insert into person (pid, pname) values (1, \'小明\');commit;----修改一条记录update person set pname = \'小马\' where pid = 1;commit;

删除

----三个删除--删除表中全部记录delete from person;--删除表结构drop table person;--先删除表,再次创建表。效果等同于删除表中全部记录。--在数据量大的情况下,尤其在表中带有索引的情况下,该操作效率高。--索引可以提供查询效率,但是会影响增删改效率。truncate table person;

序列

----序列不真的属于任何一张表,但是可以逻辑和表做绑定。----序列:默认从1开始,依次递增,主要用来给主键赋值使用。----dual:虚表,只是为了补全语法,没有任何意义。create sequence s_person;select s_person.nextval from dual;----添加一条记录insert into person (pid, pname) values (s_person.nextval, \'小明\');commit;select * from person;

scott用户,密码tiger

----scott用户,密码tiger。--解锁scott用户alter user scott account unlock;--解锁scott用户的密码【此句也可以用来重置密码】alter user scott identified by tiger;--切换到scott用户下

函数

--单行函数:作用于一行,返回一个值。---字符函数select upper(\'yes\') from dual;--YESselect lower(\'YES\') from dual;--yes----数值函数select round(56.16, -2) from dual;---四舍五入,后面的参数表示保留的位数select trunc(56.16, -1) from dual;---直接截取,不在看后面位数的数字是否大于5.select mod(10, 3) from dual;---求余数----日期函数----查询出emp表中所有员工入职距离现在几天。select sysdate-e.hiredate from emp e;----算出明天此刻select sysdate+1 from dual;----查询出emp表中所有员工入职距离现在几月。select months_between(sysdate,e.hiredate) from emp e;----查询出emp表中所有员工入职距离现在几年。select months_between(sysdate,e.hiredate)/12 from emp e;----查询出emp表中所有员工入职距离现在几周。select round((sysdate-e.hiredate)/7) from emp e;
转换函数,fm去前面的0
----转换函数---日期转字符串select to_char(sysdate, \'fm yyyy-mm-dd hh24:mi:ss\') from dual;---字符串转日期select to_date(\'2018-6-7 16:39:50\', \'fm yyyy-mm-dd hh24:mi:ss\') from dual;----通用函数---算出emp表中所有员工的年薪----奖金里面有null值,如果null值和任意数字做算术运算,结果都是null。select e.sal*12+nvl(e.comm, 0) from emp e;

条件表达式(select后面有个,号,找了我半天)

---条件表达式---条件表达式的通用写法,mysql和oracle通用---给emp表中员工起中文名select e.ename, 	--这里有个逗号case e.enamewhen \'SMITH\' then \'曹贼\'when \'ALLEN\' then \'大耳贼\'when \'WARD\' then \'诸葛小儿\'--else \'无名\'endfrom emp e;---判断emp表中员工工资,如果高于3000显示高收入,如果高于1500低于3000显示中等收入,-----其余显示低收入select e.sal,casewhen e.sal>3000 then \'高收入\'when e.sal>1500 then \'中等收入\'else \'低收入\'endfrom emp e;----oracle中除了起别名,都用单引号。----oracle专用条件表达式select e.ename,decode(e.ename,\'SMITH\',  \'曹贼\',\'ALLEN\',  \'大耳贼\',\'WARD\',  \'诸葛小儿\',\'无名\') \"中文名\"from emp e;

多行函数

--多行函数【聚合函数】:作用于多行,返回一个值。select count(1) from emp;---查询总数量select sum(sal) from emp;---工资总和select max(sal) from emp;---最大工资select min(sal) from emp;---最低工资select avg(sal) from emp;---平均工资

分组

---分组查询---查询出每个部门的平均工资---分组查询中,出现在group by后面的原始列,才能出现在select后面---没有出现在group by后面的列,想在select后面,必须加上聚合函数。---聚合函数有一个特性,可以把多行记录变成一个值。select e.deptno, avg(e.sal)--, e.enamefrom emp egroup by e.deptno;---查询出平均工资高于2000的部门信息select e.deptno, avg(e.sal) asalfrom emp egroup by e.deptnohaving avg(e.sal)>2000;---所有条件都不能使用别名来判断。--比如下面的条件语句也不能使用别名当条件select ename, sal s from emp where sal>1500;---查询出每个部门工资高于800的员工的平均工资select e.deptno, avg(e.sal) asalfrom emp ewhere e.sal>800group by e.deptno;----where是过滤分组前的数据,having是过滤分组后的数据。---表现形式:where必须在group by之前,having是在group by之后。---查询出每个部门工资高于800的员工的平均工资---然后再查询出平均工资高于2000的部门select e.deptno, avg(e.sal) asalfrom emp ewhere e.sal>800group by e.deptnohaving avg(e.sal)>2000;

多表

---多表查询中的一些概念---笛卡尔积select *from emp e, dept d;---等值连接select *from emp e, dept dwhere e.deptno=d.deptno;---内连接select *from emp e inner join dept don e.deptno = d.deptno;---查询出所有部门,以及部门下的员工信息。【外连接】select *from emp e right join dept don e.deptno=d.deptno;---查询所有员工信息,以及员工所属部门select *from emp e left join dept don e.deptno=d.deptno;---oracle中专用外连接select *from emp e, dept dwhere e.deptno(+) = d.deptno;select * from emp;---查询出员工姓名,员工领导姓名---自连接:自连接其实就是站在不同的角度把一张表看成多张表。select e1.ename, e2.enamefrom emp e1, emp e2where e1.mgr = e2.empno;------查询出员工姓名,员工部门名称,员工领导姓名,员工领导部门名称select e1.ename, d1.dname, e2.ename, d2.dnamefrom emp e1, emp e2, dept d1, dept d2where e1.mgr = e2.empnoand e1.deptno=d1.deptnoand e2.deptno=d2.deptno;

子查询

---子查询---子查询返回一个值---查询出工资和SCOTT一样的员工信息select * from emp where sal in(select sal from emp where ename = \'SCOTT\')---子查询返回一个集合---查询出工资和10号部门任意员工一样的员工信息select * from emp where sal in(select sal from emp where deptno = 10);---子查询返回一张表---查询出每个部门最低工资,和最低工资员工姓名,和该员工所在部门名称---1,先查询出每个部门最低工资select deptno, min(sal) msalfrom empgroup by deptno;---2,三表联查,得到最终结果。select t.deptno, t.msal, e.ename, d.dnamefrom (select deptno, min(sal) msalfrom empgroup by deptno) t, emp e, dept dwhere t.deptno = e.deptnoand t.msal = e.saland e.deptno = d.deptno;

分页

----oracle中的分页---rownum行号:当我们做select操作的时候,--每查询出一行记录,就会在该行上加上一个行号,--行号从1开始,依次递增,不能跳着走。----排序操作会影响rownum的顺序select rownum, e.* from emp e order by e.sal desc----如果涉及到排序,但是还要使用rownum的话,我们可以再次嵌套查询。select rownum, t.* from(select rownum, e.* from emp e order by e.sal desc) t;----emp表工资倒叙排列后,每页五条记录,查询第二页。----rownum行号不能写上大于一个正数。select * from(select rownum rn, tt.* from(select * from emp order by sal desc) tt where rownum<11) where rn>5
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » oracle_day01