标签:
ROWID 是表中行的存储地址,该地址可以唯一地标识数据库中的一行,可以使用 ROWID 伪列快速地定位表中的一行
ROWNUM 是查询返回的结果集中行的序号,可以使用它来限制查询返回的行数
select * from 表名 where 列名 > any(100, 200, 300);
All:任何一个,所有的;
or(或)
select ename from scott.emp where ename=‘joke‘ or ename=‘jacky‘
and(与)
select ename from scott.emp where ename=‘and‘ or ename=‘jacky‘
not(非)
select ename from scott.emp where not ename=‘and‘ or ename=‘jacky‘
(select deptno from scott.emp) union (select deptno from scott.dept)
(select deptno from scott.emp) union all (select deptno from scott.dept)
intersect (交集):Intersect连接两句sql语句 取查询出来的两个集合的 共同部分。
(select deptno from scott.emp) intersect (select deptno from scott.dept)
minus (补集):Minus 连接两句sql 语句,取查询出来的两个集合的差。
(select deptno from scott.emp) minus (select deptno from scott.dept)
SELECT (venname|| ‘ 的地址是 ‘ ||venadd1||‘ ‘||venadd2 ||‘ ‘||venadd3) address FROM vendor_master WHERE vencode=‘V001‘;
通过使用连接操作符可以将表中的多个列合并成逻辑上的一行列
SQL 操作符的优先级从高到低的顺序是:
标签:
原文地址:http://www.cnblogs.com/hopeblog/p/5002792.html