1. 对于日期型数据, 做 *, / 运算不合法
2. 包含空值的数学表达式的值都为空值
3. oracle 中连接字符串使用 “||”, 而不是 java 中的 “+”
4. 日期和字符只能在单引号中出现.
5. WHERE 子句紧随 FROM 子句
6. 日期必须要放在单引号中, 且必须是指定的格式
7. 查询 LAST_NAME 中有 ‘o’ 字符的所有员工信息.
select *from employees where last_name like ‘%o%’
8. 查询 LAST_NAME 中第二个字符是 ‘o’ 的所有员工信息.
select *from employees where last_name like ‘_o%’
9. 查询 LAST_NAME 中含有 ‘_’ 字符的所有员工信息
使用 escape 说明转义字符.
select *from employees where last_name like ‘%\_%’ escape ‘\’
10. ORDER BY:desc(降序),asc(升序,默认的)
1). 若查询中有表达式运算, 一般使用别名排序
2). 按多个列排序: 先按第一列排序, 若第一列中有相同的, 再按第二列排序.
11. 打印出 “2009年10月14日 9:25:40” 格式的日期和时间.
select to_char(sysdate, ‘YYYY”年”MM”月”DD”日” HH:MI:SS’)
from dual
注意: 使用双引号向日期中添加字符
12. 格式化数字: 1234567.89 为 1,234,567.89
select to_char(1234567.89, ‘999,999,999.99’)
from dual
20. 字符串转为数字时
1). 若字符串中没有特殊字符, 可以进行隐式转换:
select ‘1234567.89’ + 100
from dual
2). 若字符串中有特殊字符, 例如 ‘1,234,567.89’, 则无法进行隐式转换, 需要使用 to_number() 来完成
select to_number(‘1,234,567.89’, ‘999,999,999.99’) + 100
from dual
21. 对于把日期作为查询条件的查询, 一般都使用 to_date() 把一个字符串转为日期, 这样可以不必关注日期格式
select last_name, hire_date
from employees
where hire_date = to_date(‘1998-5-23’, ‘yyyy-mm-dd’)
22. 转换函数: to_char()把日期转为字符串
select to_char(sysdate, ‘yyyy-mm-dd’)
from dual
25. 查询部门号为 10, 20, 30 的员工信息, 若部门号为 10, 则打印其工资的 1.1 倍, 20 号部门, 则打印其工资的 1.2 倍, 30 号部门打印其工资的 1.3 倍数
–使用 case-when-then-else-end
select last_name, department_id, salary, case department_id when 10 then salary * 1.1
when 20 then salary * 1.2
when 30 then salary * 1.3
end new_sal
from employees
where department_id in (10, 20, 30)
–使用 decode
select last_name, department_id, salary, decode(department_id, 10, salary * 1.1,
20, salary * 1.2,
30, salary * 1.3
) new_sal
from employees
where department_id in (10, 20, 30)
26. 多表连接查询时, 若两个表有同名的列, 必须使用表的别名对列名进行引用, 否则出错!
27. 查询出 last_name 为 ‘Chen’ 的 manager 的信息. (员工的 manager_id 是某员工的 employee_id)
0). 例如: 老张的员工号为: “1001”, 我的员工号为: “1002”,
我的 manager_id 为 “1001” — 我的 manager 是”老张”
1). 通过两条 sql 查询:
select manager_id
from employees
where lower(last_name) = ‘chen’ –返回的结果为 108
select *
from employees
where employee_id = 108
2). 通过一条 sql 查询(自连接):
select m.*
from employees e, employees m
where e.manager_id = m.employee_id and e.last_name = ‘Chen’
3). 通过一条 sql 查询(子查询):
select *
from employees
where employee_id = (
select manager_id
from employees
where last_name = ‘Chen’
)
28. 左外连接和右外连接
select last_name, e.department_id, department_name
from employees e, departments d
where e.department_id = d.department_id(+)
select last_name, d.department_id, department_name
from employees e, departments d
where e.department_id(+) = d.department_id
理解 “(+)” 的位置: 以左外连接为例, 因为左表需要返回更多的记录,
右表就需要 “加上” 更多的记录, 所以在右表的链接条件上加上 “(+)”
注意: 1). 两边都加上 “(+)” 符号, 会发生语法错误!
2). 这种语法为 Oracle 所独有, 不能在其它数据库中使用.
29. SQL 99 链接 Employees 表和 Departments 表
1).
select *
from employees join departments
using(department_id)
缺点: 要求两个表中必须有一样的列名.
2).
select *
from employees e join departments d
on e.department_id = d.department_id
3).多表链接
select e.last_name, d.department_name, l.city
from employees e join departments d
on e.department_id = d.department_id
join locations l
on d.location_id = l.location_id
30. SQL 99 的左外连接, 右外连接, 满外连接
1).
select last_name, department_name
from employees e left join departments d
on e.department_id = d.department_id
2).
select last_name, department_name
from employees e right join departments d
on e.department_id = d.department_id
3).
select last_name, department_name
from employees e full join departments d
on e.department_id = d.department_id
31. 子查询注意:
1). 子查询要包含在括号内
2). 将子查询放在比较条件的右侧
3). 在 SELECT 列表中所有未包含在组函数中的列都应该包含在 GROUP BY 子句中
例: 按 department_id 进行分组
select department_id, avg(salary)
from employees
group by department_id
32. 利用子查询创建表 myemp, 该表中包含 employees 表的 employee_id(id), last_name(name), salary(sal), email 字段
1). 创建表的同时复制 employees 对应的记录
create table myemp
as
select employee_id id, last_name name, salary sal, email from employees
2). 创建表的同时不包含 employees 中的记录, 即创建一个空表
create table myemp
as
select employee_id id, last_name name, salary sal, email from employees where 2 = 3
33. 对现有的表进行修改操作
1). 添加一个新列
ALTER TABLE myemp ADD(age number(3))
2). 修改现有列的类型
ALTER TABLE myemp MODIFY(name varchar2(30));
3). 修改现有列的名字
ALTER TABLE myemp RENAME COLUMN sal TO salary;
4). 删除现有的列
ALTER TABLE myemp DROP COLUMN age;
5). 添加约束(主外键约束)
ALTER TABLE EMPLOYEES ADD
CONSTRAINT DEPARTMENT_ID_FK FOREIGN KEY(DEPARTMENT_ID) REFERENCES DEPARTMENTS(DEPARTMENT_ID)
34. 清空表(截断: truncate), 不能回滚!!
35.
1). 创建一个表, 该表和 employees 有相同的表结构, 但为空表: create table emp2 as select * from employees where 1 = 2;
2). 把 employees 表中 80 号部门的所有数据复制到 emp2 表中: insert into emp2 select * from employees where department_id = 80;
36. 定义非空约束
1). 非空约束只能定义在行级.
2). 不指定约束名
create table emp2 (name varchar2(30) not null, age number(3));
3). 指定约束名
create table emp3(name varchar2(30) constraint name_not_null not null, age number(3));
37. 唯一约束
1). 行级定义
①. 不指定约束名
create table emp2 (name varchar2(30) unique, age number(3));
②. 指定约束名
create table emp3 (name varchar2(30) constraint name_uq unique, age number(3));
2). 表级定义: 必须指定约束名
①. 指定约束名
create table emp3 (name varchar2(30), age number(3), constraint name_uq unique(name));
38. 外键约束
1). 行级定义
①. 不指定约束名
create table emp2(
emp_id number(6),
name varchar2(25),
dept_id number(4) references dept2(dept_id))
②. 指定约束名
create table emp3(
emp_id number(6),
name varchar2(25),
dept_id number(4) constraint dept_fk3 references dept2(dept_id))
2). 表级定义: 必须指定约束名
①. 指定约束名
create table emp4(
emp_id number(6),
name varchar2(25),
dept_id number(4),
constraint dept_fk2 foreign key(dept_id) references dept2(dept_id))
39 约束需要注意的地方
1). ** 非空约束只能定义在列级
2). ** 唯一约束的列值可以为空
3). ** 外键引用的列起码要有一个唯一约束
40. 建立外键约束时的级联删除问题:
1). 级联删除:
create table emp2(
id number(3) primary key,
name varchar2(25) unique,
dept_id references dept2(dept_id) on delete cascade)
2). 级联置空
create table emp3(
id number(3) primary key,
name varchar2(25) unique,
dept_id references dept2(dept_id) on delete set null)
41. 查询员工表中 salary 前 10 的员工信息.
select last_name, salary
from (select last_name, salary from employees order by salary desc)
where rownum <= 10
说明: rownum “伪列” —- 数据表本身并没有这样的列, 是 oracle 数据库为每个数据表 “加上的” 列. 可以标识行号.
默认情况下 rownum 按主索引来排序. 若没有主索引则自然排序.
注意: **对 ROWNUM 只能使用 < 或 <=, 而是用 =, >, >= 都将不能返回任何数据.(用别名)
42. 查询员工表中 salary 10 – 20 的员工信息.
select *
from(
select rownum rn, temp.*
from (
select last_name, salary
from employees e
order by salary desc
) temp
)
where rn > 10 and rn < 21
43. 对 oralce 数据库中记录进行分页: 每页显示 10 条记录, 查询第 5 页的数据
select employee_id, last_name, salary
from (
select rownum rn, employee_id, last_name, salary
from employees
) e
where e.rn <= 50 and e.rn > 40
注意: **对 oracle 分页必须使用 rownum “伪列”!
select employee_id, last_name, salary
from (
select rownum rn, employee_id, last_name, salary
from employees
) e
where e.rn <= pageNo * pageSize and e.rn > (pageNo – 1) * pageSize
对MySql的分页: select * from employees limit (pageNo – 1) * pageSize,pageSize
44. 序列通常用来生成主键:
INSERT INTO emp2 VALUES (emp2_seq.nextval, ‘xx’, …)
45.
序列的创建
create sequence seq_newsId
increment by 1
start with 1
maxvalue 999999999;
得到序列的SQL语句
select seq_newsid.nextval from sys.dual;
删除序列的SQL
DROP SEQUENCE seq_newsId;