摘要: SELECT T.table_name, LENGTH(TRIM(T.table_name)) FROM user_tables t ORDER BY LENGTH(TRIM(t.table_name)) DESC; SELECT COUNT(t.table_name) 表名超长的表数量 FROM user_tables T WHERE LENGTH(TRIM(t.table_n... 阅读全文
posted @ 2017-12-09 17:52 e3tB8Wz7 阅读(2846) 评论(0) 推荐(0) 编辑
摘要: package review01; import java.util.Arrays; public class review01 { public static void main(String[] args) { method(); } private static void method() { // 数组逆序存储 int[] arr =... 阅读全文
posted @ 2017-09-12 08:43 e3tB8Wz7 阅读(1325) 评论(0) 推荐(0) 编辑
摘要: 常用快捷键 常用General 基础编辑 Basic editing 导航 Navigation 搜索和替换 Search and replace 多光标和选择 Multi-cursor and selection 丰富的语言编辑 Rich languages editing 编辑器管理 Edito 阅读全文
posted @ 2017-09-01 17:24 e3tB8Wz7 阅读(284) 评论(0) 推荐(0) 编辑
摘要: /* * 发送同步ajax请求的函数 CreateBy 秋水 */ function syncAjax(data) { var resp = null; $.ajax({ type : "POST", url : 'mvc/dispatch', data : data, async : false, ... 阅读全文
posted @ 2017-08-30 18:53 e3tB8Wz7 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 说明 : ?!表示负向预查,在任何开始不匹配该正则表达式模式的位置来匹配搜索字符串。 ?!表示负向预查,在任何开始不匹配该正则表达式模式的位置来匹配搜索字符串。 上述正则表达式为 : 从不以0开头的整数或以0开头的整数加两位以内小数的位置开始 , 匹配最大13位整数或13位整数加两位以内小数 阅读全文
posted @ 2017-08-22 09:40 e3tB8Wz7 阅读(7746) 评论(0) 推荐(0) 编辑
摘要: http://idea.iteblog.com/key.php 阅读全文
posted @ 2017-08-17 13:38 e3tB8Wz7 阅读(480) 评论(1) 推荐(0) 编辑
摘要: select * from t_register r where r.reg_date <= to_date(trunc(sysdate, 'mi') - 10 / (24 * 60)); 阅读全文
posted @ 2017-07-13 15:18 e3tB8Wz7 阅读(1453) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 Angular基础-自定义过滤器 6 7 8 9 10 ng-repeat 求和 11 12 13 姓名 14 年龄 15 身高 16 17 ... 阅读全文
posted @ 2017-07-04 13:27 e3tB8Wz7 阅读(1114) 评论(0) 推荐(0) 编辑
摘要: 1 //封装http请求键值对的函数 2 function Map() { 3 this.keys = new Array(); 4 this.data = {}; 5 //添加键值对 6 this.put = function(key, value) { 7 if (this.data[key] == null) { //如键不存在... 阅读全文
posted @ 2017-06-29 10:41 e3tB8Wz7 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 1 //获取当前的日期时间函数,格式为“yyyy-MM-dd hh:mm:ss” 2 function getNowFormatDate(date) { 3 if (date == null) { 4 var date = new Date(); 5 } 6 var seperator1 = "-"; 7 var seperator2... 阅读全文
posted @ 2017-06-29 10:40 e3tB8Wz7 阅读(1605) 评论(0) 推荐(0) 编辑