redhat-基础知识
文章平均质量分 76
天高任马飞
一切随风
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
rollup与cube分析函数学习总结
cube: 有2的n次方种组合:select empno,ename,job, sum(sal), grouping(empno) gempno, grouping(ename) gename, grouping原创 2011-08-16 15:32:07 · 389 阅读 · 0 评论 -
oracle 表函数与管道函数结合示例
create table LX3( XH INTEGER not null, TYPE VARCHAR2(1))/alter table LX3 add constraint PK$_LX3$XH primary key (XH)/insert into lx3 (XH, TYPE) values (1, 'a');insert into lx3原创 2012-01-27 08:01:27 · 424 阅读 · 0 评论 -
PL/SQL面试题
PL/SQL面试题2010-04-29 14:25一、 求1-100之间的素数declarefag boolean:=true;beginfor i in 1..100 loopfor j in 2..i-1 loopif mod(i,j)=0 thenfag:=false;end if;end loop;if fag thendbms_o转载 2012-01-27 08:13:07 · 4176 阅读 · 0 评论 -
oracle 嵌套表各种使用方法示例
create or replace package dp_nest_test is function get_lx3_types return t_nest_type; function ret_lx3_point(r sys_refcursor) return t_nest_type; function ret_pipe return t_nest_type_原创 2012-01-27 08:14:12 · 700 阅读 · 0 评论
分享