摘要: alter table PARAMETETER_CONFIGURATION add (INPUT_IS VARCHAR2(20) ); declare sum_i int:=0; --定义整型变量,存储整数和begin for i in reverse 6..500000 --遍历前100个自然数 阅读全文
posted @ 2019-11-22 22:22 w'c's 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 批量插入 <insert id="add" parameterType="java.util.List"> insert all <foreach item="item" index="index" collection="list" open="" separator="" close=""> i 阅读全文
posted @ 2019-11-22 21:51 w'c's 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 触发器 CREATE OR REPLACE TRIGGER "S_JH_RULERELATION_ID_TRIGGER" before insert on S_JH_RULERELATION for each rowbegin select nvl(max(id),0)+1 into :new.id 阅读全文
posted @ 2019-11-22 21:40 w'c's 阅读(153) 评论(0) 推荐(0) 编辑