学习是一种信仰。
发布时间:2014-12-30 14:38:07
--SQL基础-->层次化查询(START BY ... CONNECT BY PRIOR)--====================================================== 层次化查询,即树型结构查询,是SQL中经常用到的功能之一,通常由根节点,父节点,子节点,叶节点组成,其语法如下: SELECT [LEVEL] ,column,expressi.........【阅读全文】
发布时间:2014-12-26 11:22:31
http://blog.csdn.net/zhaozhongju/article/details/4177358Oracle数据库中的rollup配合group by命令使用,可以提供信息汇总功能(与"小计"相似)示例如下:SQL> select job,deptno,sal from emp;JOB DEPTNO SAL--------- -------.........【阅读全文】
发布时间:2014-10-24 16:44:28
TRANSLATE ( 'char' , 'from_string' , 'to_string' )TRANSLATE返回将from_string中的每个字符替换为to_string中的相应字符以后的string。TRANSLATE是REPLACE所提供的功能的一个超集。如果from_string比to_string长,那么在from_string中而不在to_string中的额外字符将从char中被删除,因为它们没有相应的替换字符。to_.........【阅读全文】
发布时间:2014-08-28 14:54:02
一、触发器引起ORA-04091原因:在行级触发器中,不能查询自身表场景重现:通过触发器实现test_count表中统计test表中行数--创建子表create table TEST(id NUMBER, name varchar2(100), primary key (id));--创建统计表create table test_count (test_count int);--创建触发器CREATE OR REPLACE TRIGGER T_TEST.........【阅读全文】
发布时间:2014-08-27 23:15:01
一、内连接和外连接 内连接用于返回满足连接条件的记录;而外连接则是内连接的扩展,它不仅会满足连接条件的记录,而且还会返回不满足连接条件的记录,语法如下: select table1.column,table2.column from table1 [inner|left|right|full]join table2 on table1.column=table2.column; &nb.........【阅读全文】