2018年4月17日

常用Dos命令

摘要: -dir 列出当前目录下的文件以及文件夹 -md 创建目录 -rd 删除目录 -cd 进入指定目录 -cd.. 退回到上一级目录 -cd\ 退回到跟目录 -exit 退出dos命令行 阅读全文

posted @ 2018-04-17 16:43 HopeWu 阅读(112) 评论(0) 推荐(0) 编辑

2018年4月15日

truncate table

摘要: truncate table user_info 阅读全文

posted @ 2018-04-15 19:19 HopeWu 阅读(113) 评论(0) 推荐(0) 编辑

2018年4月14日

Eclipse 修改字符集

摘要: Eclipse 修改字符集 默认情况下 Eclipse 字符集为 GBK,但现在很多项目采用的是 UTF-8,这是我们就需要设置我们的 Eclipse 开发环境字符集为 UTF-8, 设置步骤如下: 在菜单栏选择 Window -> Preferences -> General -> Workspa 阅读全文

posted @ 2018-04-14 06:27 HopeWu 阅读(127) 评论(0) 推荐(0) 编辑

VLOOKUP函数使用

摘要: VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])。 VLOOKUP(查找值,查找范围,查找列数,精确匹配或者近似匹配) VLOOKUP(F7,A7:A48952,1,FALSE) 阅读全文

posted @ 2018-04-14 05:56 HopeWu 阅读(167) 评论(0) 推荐(0) 编辑

2018年4月13日

SQL 中字母大小写转换

摘要: 大写字母改成小写字母 update 表名 set 字段名a= Lower(字段a) 小写字母改成大写字母 update 表名 set 字段名a= upper(字段a) 阅读全文

posted @ 2018-04-13 17:28 HopeWu 阅读(10777) 评论(0) 推荐(0) 编辑

2018年4月10日

javascript 对象

摘要: var myDog = {"name":"aaa","legs":5,"tails":20,"friends": ["sss","ddd"] }; var testObj = {"hat": "ballcap","shirt": "jersey","shoes": "cleats"}; var ha 阅读全文

posted @ 2018-04-10 21:26 HopeWu 阅读(80) 评论(0) 推荐(0) 编辑

2018年4月8日

JavaScript 使用switch语句进行多选项选择

摘要: function myTest(val) {var answer = "";switch (val) { case 1:answer= "alpha";break; case 2:answer = "beta"; break;case 3:answer="gamma"; break;case 4:a 阅读全文

posted @ 2018-04-08 20:42 HopeWu 阅读(534) 评论(0) 推荐(0) 编辑

2018年4月4日

javascript学习

摘要: javascript学习笔记 javascript学习笔记 注释 1. // This is an in-line comment. 2. /* This is a multi-line comment */ 七种data types(数据类型) undefined(未定义), null(空), b 阅读全文

posted @ 2018-04-04 09:57 HopeWu 阅读(126) 评论(0) 推荐(0) 编辑

导航