摘要: 1.国内下载地址: http://mirrors.sohu.com/mysql/MySQL-5.7/ 2.解压 3. 配置my.ini文件 [client] # 设置mysql客户端默认字符集 default-character-set=utf8 [mysql] default-character- 阅读全文
posted @ 2021-02-03 10:54 Vince666 阅读(147) 评论(0) 推荐(0) 编辑
摘要: ES6中Import和Export基本使用 Import //1 export var a = 10; export var b = "小明"; //2 var a =10; var b ="小明"; export {a,b}; //3 function add(){ return '哈哈'; } 阅读全文
posted @ 2020-12-08 16:30 Vince666 阅读(90) 评论(0) 推荐(0) 编辑
摘要: Js普通函数中this //this的意思是“我的”,如我的名字叫张三,我的名字叫李四。每个人都可以用“我的” //张三说我的,那么“我的”就代表张三,李四说我的,那么“我的”就代表李四 var name = "张三"; function a(){ console.log(this.name) } 阅读全文
posted @ 2020-12-08 12:44 Vince666 阅读(161) 评论(2) 推荐(1) 编辑
摘要: 1.国内下载地址:https://npm.taobao.org/mirrors/git-for-windows 2.安装 转载:https://blog.csdn.net/qq_43715354/article/details/108638061 3.配置git账号密码 4.基本配置命令 阅读全文
posted @ 2020-12-07 11:01 Vince666 阅读(75) 评论(2) 推荐(1) 编辑
摘要: 本人能力有限,请大家复制后自行优化。 使用方法: select row_number() over(order by convert(date,inDate,105)) rowid,convert(date,inDate,105) 日期, sum(case when flag='二级报警' then 阅读全文
posted @ 2020-12-04 13:17 Vince666 阅读(299) 评论(2) 推荐(1) 编辑