05 2017 档案

摘要:create sequence bs_com_seq increment by 1 start with 1 minvalue 1 maxvalue 999999 cycle nocache order; select to_char(sysdate,'yyyymmdd')||lpad(bs_com 阅读全文
posted @ 2017-05-24 11:36 Debugs 阅读(1196) 评论(0) 推荐(0)
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>divDrag</title> <style> #div1{ width: 300px; height: 300px; background-color: #c 阅读全文
posted @ 2017-05-19 11:57 Debugs 阅读(504) 评论(0) 推荐(0)
摘要:var json={ id:"id1", name:"开心"}; //添加json["gender"]="男"json["age"]=26;alert(json.age); //删除delete json["age"];alert(json.age);alert(json.gender); 阅读全文
posted @ 2017-05-19 10:31 Debugs 阅读(275) 评论(0) 推荐(0)
摘要:NVL2(E1, E2, E3)的功能为:如果E1为NULL,则函数返回E3,否则返回E2。E2和E3类型不同的话,E3会转换为E2的类型。 oracle 函数介绍之nullif 格式: nullif(expr1,expr2) 等价于 "case when expr1 = expr 2 then n 阅读全文
posted @ 2017-05-18 18:09 Debugs 阅读(234) 评论(0) 推荐(0)
摘要:tm.begin(); sm.begin(); try { result = excel.readE(headKeyV,path); for (int index = 1; index < result.size(); index++) { tempMap = result.get(index); 阅读全文
posted @ 2017-05-18 10:21 Debugs 阅读(489) 评论(0) 推荐(0)
摘要:没80条执行一次 int bathInt = 80; for(int i = 0; i < map.size()/bathInt; i++){ msg.append(pMethod.SHHSREVObject(map.subList(i*bathInt, (i+1)*bathInt),UName,T 阅读全文
posted @ 2017-05-18 10:18 Debugs 阅读(920) 评论(0) 推荐(0)
摘要:CREATE OR REPLACE FUNCTION fn_no_make(v_type VARCHAR2, v_number_col VARCHAR2, v_table_name VARCHAR2)/* * 参数说明: * v_type: 编码前缀 * v_number_col:编码所在列名 * 阅读全文
posted @ 2017-05-12 15:14 Debugs 阅读(895) 评论(0) 推荐(0)
摘要:$jq(function () { $jq("#XSCM_WORKDAY").keyup(function () { //如果输入非数字,则替换为'',如果输入数字,则在每4位之后添加一个空格分隔 this.value = this.value.replace(/[^\d]/g, '').repla 阅读全文
posted @ 2017-05-05 11:55 Debugs 阅读(1258) 评论(0) 推荐(0)
摘要:1.1新建变量名:JAVA_HOME 变量值:E:\Java\jdk1.6.0_43(这是我的jdk安装路径) 1.2编辑变量名:Path 在后面加上:%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin 1.3 新建变量名:CLASSPATH 变量值:.;%JAVA_HOME%\ 阅读全文
posted @ 2017-05-04 13:51 Debugs 阅读(209) 评论(0) 推荐(0)
摘要:select to_date(trunc(sysdate)) - to_date(trunc(create_time)) from table_201410; 阅读全文
posted @ 2017-05-04 11:46 Debugs 阅读(463) 评论(0) 推荐(0)