2023年3月27日
摘要: declare-- 创建游标 v_sql varchar2(500);cursor c_tablecodes is select distinct tablecode from busfw_t_dccolumnnew t where elementsavetype = 'name' ;begin-- 阅读全文
posted @ 2023-03-27 16:45 ..SunXin 阅读(81) 评论(0) 推荐(0) 编辑
  2021年10月26日
摘要: HEXTORAW语法: HEXTORAW(string)功能: 将由string表示的二进制数值转换为一个RAW数值. String应该包含一个十六进制的数值. String中的每两个字符表示了结果RAW中的一个字节..HEXTORAW和RAWTOHEX为相反的两个函数.使用位置: 过程性语言和SQ 阅读全文
posted @ 2021-10-26 09:01 ..SunXin 阅读(798) 评论(0) 推荐(0) 编辑
  2021年4月19日
摘要: SELECT a1, a2 FROM (SELECT a1, SUBSTR ( a2, INSTR (',' || a2 || ',', ',', 1, t2.row_num), INSTR (',' || a2 || ',', ',', 1, t2.row_num + 1) - 1 - INSTR 阅读全文
posted @ 2021-04-19 16:22 ..SunXin 阅读(41) 评论(0) 推荐(0) 编辑
  2020年7月2日
摘要: select case superguid when '0' then name else (select LISTAGG(name,'.') WITHIN GROUP(ORDER BY levelno) from busfw_t_dchead where tablecode = 'BDM_T_HC 阅读全文
posted @ 2020-07-02 17:28 ..SunXin 阅读(164) 评论(0) 推荐(0) 编辑
  2020年5月9日
摘要: UPDATE p#BIM_INC_EXP_SORT a SET (a.parentid, a.levelno, a.isleaf) = (SELECT b.parentid, b.levelno, b.isleaf FROM (select unqguid, (select max(unqguid) 阅读全文
posted @ 2020-05-09 10:57 ..SunXin 阅读(285) 评论(0) 推荐(0) 编辑
  2019年9月4日
摘要: --select * from T_FPCPFUNC for update --select count(*) ct from T_FPCPFUNC group by govyear,govid,sysid,fpguid order by ct descdeclare --声明 v_temp_tab 阅读全文
posted @ 2019-09-04 11:34 ..SunXin 阅读(973) 评论(0) 推荐(0) 编辑
  2019年5月17日
摘要: 修改滚动条样式 前言 webkit支持拥有overflow属性的区域,列表框,下拉菜单,textarea的滚动条自定义样式,所以用处还是挺大的。当然,兼容所有浏览器的滚动条样式目前是不存在的。 演示 来看看这2个滚动条demo: demo1(图片版)、demo2(纯CSS3版) 滚动条组成 ::-w 阅读全文
posted @ 2019-05-17 15:44 ..SunXin 阅读(293) 评论(0) 推荐(0) 编辑
摘要: layui 页面翻译值集,通过冬天创建函数,动态调用实现 函数创建 function call(functionName){ eval("this."+functionName+"()"); } 阅读全文
posted @ 2019-05-17 10:02 ..SunXin 阅读(319) 评论(0) 推荐(0) 编辑
  2019年5月13日
摘要: /** *获取id */function getGuid(){ var len=32; //32长度 var radix=16; //16进制 var chars='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''); var uuid=[],i; rad 阅读全文
posted @ 2019-05-13 11:50 ..SunXin 阅读(899) 评论(0) 推荐(0) 编辑
  2019年5月8日
摘要: <update id="updataData" parameterType="java.util.HashMap" useGeneratedKeys="false"> <foreach collection="datalist" item="item" index="index" open="beg 阅读全文
posted @ 2019-05-08 15:47 ..SunXin 阅读(1275) 评论(0) 推荐(0) 编辑