摘要:
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 '哈哈'; } 阅读全文
摘要:
Js普通函数中this //this的意思是“我的”,如我的名字叫张三,我的名字叫李四。每个人都可以用“我的” //张三说我的,那么“我的”就代表张三,李四说我的,那么“我的”就代表李四 var name = "张三"; function a(){ console.log(this.name) } 阅读全文
摘要:
本人能力有限,请大家复制后自行优化。 使用方法: select row_number() over(order by convert(date,inDate,105)) rowid,convert(date,inDate,105) 日期, sum(case when flag='二级报警' then 阅读全文