`
longgangbai
  • 浏览: 7331302 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Oracle 10g SQL Fundamentals I(学习笔记第1-3章)

 
阅读更多
第一章和第二章
distinct

like
'S%'  S打头的
'_A%'  第二个字母是A的

绑定变量
select ename from &haha;
select &&hehe from scott.emp whre &hehe.2000 order by &hehe 多重替换,在一句话中,出现多次,第一个需要用双&&,后面再引用,只要单&

define
define定义的东西只在当前会话有效
define a=sal
select &a from scott.emp

verify
set verify off/on 当前会话有效,针对&不确认

########################################################
alter user scott account unlock identified by tiger;
alter user hr account unlock identified by hr;
conn hr/hr
select table_name from user_tables;
########################################################



第三章 单行函数
select ename,lower(ename) from scott.emp  转换成小写
             upper                              大写
             initcap                            每个单词的首字母大写
select ename,sal from emp where upper(ename)=upper('&haha');
select concat(ename,sal) from emp;	相当于上午讲的||,连接符
select ename,substr(ename,1,2) from emp;  从ename第1位开始取2位
select ename,length(ename) from emp;      字串长度
select instr('1290000','9') from dual;  从左往右,第一次出现的位置,如果没有,返回0
select lpad(sal,10,'*') from emp; 如果sal不满10位,左边用*补齐,rpad是右边补齐
select lpad(rpad(sal,10,'*'),20,'*'),先右补齐10位,再左边补齐20位
select trim('x' from 'xxxaaaaaxxxaaaxxx') 掐头去尾,通常用来去掉两端空格)
select replace('13940000429','0','8') from dual; 把0替换成8
select round(123.3456,2) from dual;  小数点后两位四舍五入,结果是123.45,如果是-2,返回100
select trunc(123.456789,2)from dual;   截取,返回123.45,如果是-2,代表只留下百位1,即100
select mod(100,3) from dual;       100被3除宇1


select round(45.923,2) ,round(45.923,0)  ,round(45.923,-1) from dual;


日期
select sysdate from dual; 查看当前时间
alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';
select sysdate+15 from dual; 只能处理-4713到9999年
年份在50-99之间,用yy解析,是当前世纪,用rr来解析是上个世纪
      0-49之间,用yy,rr,都是当前世纪
select sysdate,sysdate+1/24,sysdate+1/1440 from dual; 加一小时,加一分钟,oracle真牛逼啊。。。呵呵
select months_between(sysdate,hiredate) from emp; 两个日期之间相差多少个自然月
select sysdate,add_months(sysdate,1000) from dual;  1000个自然月后的日期
select next_day(sysdate,'sunday') from dual; 下一个礼拜天的日期
select lastday(sysdate)from dual;         当前月的最后一天
select round(sysdate,'month') from dual;
select round(sysdate,'year') from dual;
select trunc(sysdate,'year') from dual; 2011.1
www.oracle.com/pls/db102

后面的公式要罩得住前面的
to_char
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss am day')  2011-09-14
                                                  dy  
select to_char(sysdate,'fmyyyy-mm-dd hh24:mi:ss am day')去掉前导0,显示2011-9-14
select to_char(123,'9999999999.99') from dual; 返回 123.00
select to_char(123,'0999999999.99') from dual; 返回 000000000000123.00 前导0
select to_char(123.'$99999999999999.00') from dual; 返回$123.00
select to_char(1234567890,'999,999,999,999,999,999.99') from dual; 返回1,234,567,890.00

to_number
select to_number('123.00','9999999.99')+2 from dual; 返回125
to_date
select to_date('2011-01-01','yyyy-mm-dd'+1 from dual; 返回 2011-01-02 00:00:00

通用函数
NVL
select ename,comm,nvl(comm,0)+500 from emp  如果有人comm是null,就用0代替
NVL2
select ename,comm,nvl2(comm,'a','b') from emp 如果comm是null就打印b,不为null,打印a
NULLIF
NULLIF(expr1,expr2),如果相同,返回空,如果不等,返回参数1
         select first_name,length(first_name) "expr1" ,
	         last_name,length(last_name) "expr2" ,
			 nullif(length(first_name),length(last_name)) result
		 from employees;
			 
coalesce(expr1,expr2....)返回第一个不为空的
	select last_name,coalesce(manager_id,commission_pct,-1) comm
	from employees
	order by commission_pct;

if-else格式的SQL语句
case
  select last_name ,job_id ,salary,
		 case job_id
			when 'IT_PROG' then 1.10*salary
			when 'ST_CLERK' then 1.15*salary
			when 'SA_REP' then 1.20*salary
			else  
			  salary
		 end "REVISED_SALARY"
	from employees;
	
	   
		   
decode
  select last_name ,job_id ,salary,
		 decode (trunc(salary/2000,0)
			      0,0.00,
				  1,0.09,
				  2,0.20,
				  3,0.30,
				  4,0.40,
				  5,0.50,
				  6,0.60,
				    0.45)
					tax_rate
	from employees
	where department_id=80;
 

 

分享到:
评论

相关推荐

    Oracle 11g SQL Fundamentals I

    《Oracle 11g SQL Fundamentals I》是Oracle公司为初学者和有一定基础的数据库管理员提供的培训资料之一,主要目的是帮助学员掌握Oracle 11g版本中的SQL语言基本用法与技巧。本课程内容涵盖了一系列SQL的基础概念、...

    Oracle Database 10g SQL Fundamentals I - Student Guide

    ### Oracle Database 10g SQL Fundamentals I - 学生指南 #### 一、概述 本学生指南旨在为学习者提供Oracle Database 10g SQL基础的全面介绍。Oracle Database 10g作为一款功能强大的关系型数据库管理系统,被广泛...

    Oracle Database 10g SQL Fundamentals I

    Oracle Database 10g SQL Fundamentals I 是一个深入学习Oracle数据库管理系统中SQL基础的课程,主要面向初学者和希望进一步掌握SQL语言的IT专业人士。在这个课程中,你会了解到如何使用SQL来管理和操作Oracle数据库...

    Oracle Database 11g - SQL Fundamentals I

    Oracle Database 11g SQL Fundamentals I 是一个深入学习Oracle数据库管理系统基础的教程,主要针对初学者和希望提升SQL技能的IT专业人士。Oracle 11g是Oracle公司的一个重要版本,提供了许多增强的功能和优化,使得...

    oracle 10g sql Fundamentals

    Oracle 10g SQL Fundamentals 是一套针对初学者和专业人士的教程,旨在深入理解Oracle数据库管理系统中的SQL(Structured Query Language)基础。这个版本是2.1,可能包含了更新的教学材料和改进的学习路径。 在...

    Oracle_Database_10g_SQL_Fundamentals_I.pdf

    Oracle 10g OCP官方课程列表: Oracle Database 10g: SQL Fundamentals Oracle Database 10g: Administration Workshop I Oracle Database 10g: Administration Workshop II

    Oracle Database 11g:SQL Fundamentals I1

    “Oracle Database 11g: SQL Fundamentals I” 这个标题指出了本教程的主要内容是关于 Oracle Database 11g 的 SQL 基础知识的第一部分。Oracle Database 11g 是一款由 Oracle 公司开发的关系型数据库管理系统,它...

    [Oracle官方PPT讲义] Oracle DB 11g SQL Fundamentals I

    Oracle DB 11g SQL Fundamentals I 是一套官方提供的PPT讲义,旨在深入浅出地介绍Oracle数据库11g版本中的SQL基础概念和技术。在这一讲义中,你将全面学习到如何与Oracle数据库进行交互,理解SQL语言的基础结构,并...

    Oracle Database 11g SQL Fundamentals

    总而言之,Oracle Database 11g SQL Fundamentals是一份全面的学习资源,涵盖了SQL语言的基本用法和高级特性,以及Oracle数据库特有的功能。通过深入学习和实践,你将能够熟练掌握在Oracle 11g环境下使用SQL进行数据...

    Oracle Database 11g SQL Fundamentals 英文原版

    Oracle Database 11g SQL Fundamentals 是Oracle公司推出的一本针对初学者和数据库管理员的权威指南,旨在深入讲解SQL在Oracle 11g环境中的应用。这本书分为两个部分,全面覆盖了SQL的基础知识以及在Oracle数据库...

    D17111GC11.Oracle.Database.10g.SQL.Fundamentals.II

    Oracle Database 10g SQL Fundamentals II是针对Oracle 10g数据库的高级SQL技术的学习资源。通过对上述知识点的深入理解和实践,可以极大地提升个人在Oracle数据库管理和开发方面的能力,为通过1z0-047 Oracle ...

    oracle pl/sql fundamentals

    Oracle PL/SQL Fundamentals是Oracle University为学生设计的一份培训指南,旨在深入理解并掌握Oracle数据库中的PL/SQL编程基础。PL/SQL是Oracle数据库特有的结构化查询语言扩展,它结合了SQL的强大功能与过程性编程...

    oracle 11G sql fundamentals

    Oracle 11g SQL Fundamentals是学习Oracle数据库管理和开发的基础,尤其对于准备Oracle Certified Professional (OCP)考试的人员来说,这部分知识至关重要。SQL(Structured Query Language)是用于管理关系数据库的...

    oracle 10g sql Fundamentals.part01.rar

    oracle 10g sql Fundamentals.part01.rar

    1Z0-051-Oracle.Database 11g SQL Fundamentals I Exam Guide Exam(OCA)

    《1Z0-051-Oracle.Database 11g SQL Fundamentals I Exam Guide Exam (OCA)》是Oracle认证助理(OCA)考试的重要参考资料,主要针对Oracle Database 11g的基础SQL知识进行深入讲解。Oracle 11g是Oracle公司推出的一...

Global site tag (gtag.js) - Google Analytics