代码 create table tm_lzh as SELECT 'a1' c1,'b1' c2 FROM dual union all SELECT 'a2' c1,'b2' c2 FROM dual union all SELECT 'a3' c1,'b3' c2 FROM dual union all SELECT 'a4' c1,'b4' c2 FROM dual union all SELECT 'a5' c1,'b5' c2 FROM dual union all SELECT 'a…
需求 需要跑一个数据,时间从17年5月到21年3月. 代码(简单粗暴实现) DECLARE i number; BEGIN i:= 201705; WHILE i <202104 LOOP if i=201713 then i:=201801; elsif i=201813 then i:=201901; elsif i=201913 then i:=202001; elsif i=202013 then i:=202101; end if; DBMS_OUTPUT.PUT_LINE(i||':…
原文来自:https://www.lesg.cn/netdaima/sqlservert-sql/2016-463.html SsqlServer 中循环表有几种方式 1.临时表 2.游标 3-. 下面就来说说怎么用临时表格来循环数据 create table t( id ,), dt datetime not null default(getdate()), name ) not null default('') ) --测试案例,给表插入数据 ; ) begin insert into t…
ORACLE 查询一个数据表后通过遍历再插入另一个表中的两种写法 语法 第一种: 通过使用Oracle语句块 --指定文档所有部门都能查看 declare cursor TABLE_DEPT and STATUS>-; begin for c in TABLE_DEPT loop INSERT INTO G_KNOWDOCRIGHT(RID,DIRID,DOCID,USERID) VALUES(SYS_GUID(),'权限编号','文档编号',c.ID); end loop; commit;…