上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 1.创建测试表并准备测试数据sec@ora10g> create table a (a number(1),b number(1),c number(1));sec@ora10g> create table b (a number(1),d number(1),e number(1));sec@or... 阅读全文
posted @ 2015-07-20 16:38 蒲木杉 阅读(347) 评论(0) 推荐(0) 编辑
摘要: /** * 禁止输入非数字 * 但是在中文输入法的状态下,可以直接回车输入字母或者空格输入汉字 * 所以在提交页面的时候需要再检查一次 */function preventNonnumeric(e) { var k = window.event ? e.keyCode: e.which; ... 阅读全文
posted @ 2015-07-20 16:24 蒲木杉 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: 1.在线代码格式化 http://tool.oschina.net/codeformat http://www.bejson.com/ 2.http监测工具httpwatch下载 http://www.httpwatch.com/download 3.md5在线解密 http://www.cmd5. 阅读全文
posted @ 2015-07-20 16:10 蒲木杉 阅读(162) 评论(0) 推荐(0) 编辑
摘要: w3school w3cschool My97DatePicker layer runoob 懒人图库 开源中国社区 VisualSVN TortoiseSVN ionicons Webstorm常用快捷键 Nginx中文文档 阅读全文
posted @ 2015-07-20 16:03 蒲木杉 阅读(179) 评论(0) 推荐(0) 编辑
摘要: -- oracle sql 查询前十条数据select * from b2c_code where rownum <= '10';-- sql server 查询前十条数据select top 10 * from b2c_code; 阅读全文
posted @ 2015-07-20 15:57 蒲木杉 阅读(25327) 评论(0) 推荐(1) 编辑
摘要: -- 按照笔划排序select * from traveler_info order by nlssort(traveler_name, 'nls_sort=schinese_stroke_m');-- 按照部首排序select * from traveler_info order by nlsso... 阅读全文
posted @ 2015-07-20 15:43 蒲木杉 阅读(407) 评论(0) 推荐(0) 编辑
摘要: -- 修改表team_info的team_start_date字段(timestamp类型)的值为当前系统时间之后十天update team_info set team_start_date = sysdate + 10 where team_id = '1203-17792'; 阅读全文
posted @ 2015-07-20 15:34 蒲木杉 阅读(2965) 评论(0) 推荐(0) 编辑
摘要: 删除文件D:\cits-all\workspace\cits\.metadata\.plugins\org.eclipse.e4.workbench\workbench.xmi 备注:该路径是本人工作项目的绝对路径,请读者找到自己工作项目下的该文件删除即可 阅读全文
posted @ 2015-07-20 15:26 蒲木杉 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-07-20 15:19 蒲木杉 阅读(162) 评论(0) 推荐(0) 编辑
摘要: /** * js中的array */function myArray() { // 定义myArray,并添加值 var myArray = new Array(); myArray[0] = 3; myArray[1] = 1; myArray[2] = 2; ... 阅读全文
posted @ 2015-07-20 14:27 蒲木杉 阅读(157) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页