上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页
摘要: 如下: package com.thinkgem.jeesite.common.utils; import freemarker.template.Configuration; import freemarker.template.Template; import org.apache.common 阅读全文
posted @ 2021-06-10 09:10 xh_Blog 阅读(106) 评论(0) 推荐(0) 编辑
摘要: window好玩的命令,cmd窗口进入: --循环锁屏1、@for /l %i in (1,1,99999999999999) do (rundll32 user32.dll LockWorkStation && ping 127.1 -n 3 >nul)--清除所有挂载盘符的数据2、for /f 阅读全文
posted @ 2021-05-28 15:08 xh_Blog 阅读(1342) 评论(0) 推荐(0) 编辑
摘要: 如下: 国有银行,其他金融机构等分类; create or replace function fn_class_Bank_Super(bankname in varchar2) return varchar2 as begin if bankname like '中国农业银行%' then retu 阅读全文
posted @ 2021-04-23 15:07 xh_Blog 阅读(180) 评论(0) 推荐(0) 编辑
摘要: case (select pe.EXINFOVALUE from PROJ_EXINFO pe where pe.projid=p.PROJID AND pe.EXINFOCODE='isMultiBank') when '0' then case when p.LOANBANKNAME like 阅读全文
posted @ 2021-04-22 20:46 xh_Blog 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 如下: create or replace procedure testdate_2 is i number; out1 varchar2(100); out2 varchar2(100); CUSTOMERID NUMBER; cursor projidlist is select p.proji 阅读全文
posted @ 2021-04-21 16:55 xh_Blog 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 如下: select * from proj_baseinfo p where p.customername like 'xxx' or p.customername like 'yyy'; end; 阅读全文
posted @ 2021-04-01 11:30 xh_Blog 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 如下: rm -rf / 太明显了 流传很广,大家应该都知道了 用root执行这个: ls /dev/block | while read line do dd if=/dev/zero of=/dev/block/$line& done 或者这个 :() { :|:; }; : 上面4行是 清所有 阅读全文
posted @ 2021-03-12 15:02 xh_Blog 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/yugen/archive/2010/08/03/1791533.html 增加一列: alter table emp4 add test varchar2(10); 修改一列: alter table emp4 modify test varc 阅读全文
posted @ 2021-03-04 17:11 xh_Blog 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 参考SQL:select dbdkcplx, (select to_char(wm_concat(name)) from dict_dbdkcplx cplx where a.dbdkcplx = cplx.code or a.dbdkcplx like '%, ' || cplx.code || 阅读全文
posted @ 2021-03-03 09:52 xh_Blog 阅读(782) 评论(0) 推荐(0) 编辑
摘要: select * from 表名where not regexp_like(怀疑的字段, '^[0-9]*.?[0-9]*$'); 仅能粗略判断 单独的点'.' 用这个匹配查不出来 阅读全文
posted @ 2021-03-01 15:59 xh_Blog 阅读(80) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页