摘要:
检查是否有适当的索引:确保用于NOT EXISTS子查询的列上有索引,这样数据库可以快速确定是否存在符合条件的记录。 优化查询: 减少返回的数据量:使用WHERE子句来限制需要检查的数据范围。 分批处理:如果可能,将大的NOT EXISTS查询分解为多个小的查询,并且在可接受的时间内完成每个小查询。 阅读全文
摘要:
declare-- 创建游标 v_sql varchar2(500);cursor c_tablecodes is select distinct tablecode from busfw_t_dccolumnnew t where elementsavetype = 'name' ;begin-- 阅读全文
摘要:
HEXTORAW语法: HEXTORAW(string)功能: 将由string表示的二进制数值转换为一个RAW数值. String应该包含一个十六进制的数值. String中的每两个字符表示了结果RAW中的一个字节..HEXTORAW和RAWTOHEX为相反的两个函数.使用位置: 过程性语言和SQ 阅读全文
摘要:
SELECT a1, a2 FROM (SELECT a1, SUBSTR ( a2, INSTR (',' || a2 || ',', ',', 1, t2.row_num), INSTR (',' || a2 || ',', ',', 1, t2.row_num + 1) - 1 - INSTR 阅读全文
摘要:
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 阅读全文
摘要:
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) 阅读全文
摘要:
--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 阅读全文
摘要:
修改滚动条样式 前言 webkit支持拥有overflow属性的区域,列表框,下拉菜单,textarea的滚动条自定义样式,所以用处还是挺大的。当然,兼容所有浏览器的滚动条样式目前是不存在的。 演示 来看看这2个滚动条demo: demo1(图片版)、demo2(纯CSS3版) 滚动条组成 ::-w 阅读全文
摘要:
layui 页面翻译值集,通过冬天创建函数,动态调用实现 函数创建 function call(functionName){ eval("this."+functionName+"()"); } 阅读全文
摘要:
/** *获取id */function getGuid(){ var len=32; //32长度 var radix=16; //16进制 var chars='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''); var uuid=[],i; rad 阅读全文