标签:io 使用 sp on bs sql nbsp oracle c
SQL优化的原则
Select * from zl_yhjbqk where dy_dj = ‘1K以下‘ and xh_bz=1
Select * from zl_yhjbqk where xh_bz=1 and dy_dj = ‘1K以下‘
在where和having都能使用的时候.使用where.
where和having的区别:where后面不能使用组函数
而union = distinct + union all
举例:
SQL> select e.*
from emp e,dept d
where e.deptno=d.deptno and d.dname=‘SALES‘;
SQL> select *
from emp
where deptno = (select deptno
from dept
where dname=‘SALES‘);
标签:io 使用 sp on bs sql nbsp oracle c
原文地址:http://www.cnblogs.com/DreamDrive/p/4090790.html