举个例子: “把这份报告复印一下”。 5W2H Who: 小张 What:复印报告 How: 用高品质复印 When:下班前 Where: 总经理办公室 How many:2份 Why:给客户做参考 整理后: “请你将这份报告复印2份,在下班前送到总经理办公室交给总经理。请留意复印的质量,总经理要带 ...
分类:
其他好文 时间:
2020-03-16 09:51:42
阅读次数:
53
built-in function,is python already prepar for us ,anytime we can call built-in function when we needed it . all() dict() help() all([1,2,'') eval('1+ ...
分类:
编程语言 时间:
2020-03-15 11:23:37
阅读次数:
79
when you append a list to a list, something needs to be noted: 1 a = 1 2 b = [] 3 for i in range(4): 4 a = a + b 5 b.append(a) the result is right, bu ...
分类:
移动开发 时间:
2020-03-13 20:57:15
阅读次数:
82
1、创建表2、追加字段-删除字段3、随机数4、时间转字符串5、查询年、月、日6、Case、When、Then7、获取新增Sql的Id8、增加序号9、Try-Catch10、与时间相关的Sql查询11、查询sql执行时间和CPU占用时间和I/O操作情况12、替换13、删除表、清空表、复制表14、清理日志15、锁表查询、解锁16、Sql语句性能Top1017、查询表信息18、查询表说明19、查询表字段
分类:
数据库 时间:
2020-03-13 17:10:14
阅读次数:
68
set statistics io,time on; 查询语句消耗时间 2.设置内存大小 --开启数据库高级选项exec sp_configure 'show advanced options',1goreconfigure with overridego exec sp_configure 'ma ...
分类:
数据库 时间:
2020-03-11 19:38:21
阅读次数:
80
useState is typically simpler at first than useReducer (you can even implement useState using useReducer), but there's one scenario where useReducer i ...
分类:
其他好文 时间:
2020-03-11 18:14:07
阅读次数:
69
系统 centos7 远程连接工具MobaXterm 一、虚拟机 待整理 二、阿里云 2.1 阿里云准备 1.三台CES 2.若需要,购买公网弹性IP并绑定 3.若需要,可以购买云盘 挂载数据盘 阿里云购买的第2块云盘默认是不自动挂载的,需要手动配置挂载上。 (1)查看SSD云盘 sudo fdis ...
分类:
其他好文 时间:
2020-03-10 14:08:52
阅读次数:
69
lua中 table.getn(t) 、#t、 table.maxn(t) 这三个什么区别? RTlocal t = {1,888,x= 999,b=2,5,nil,6,7,[10]=1,8,{z = 1,y = 1},nil,nil}print(table.getn(t))print(#t)pri ...
分类:
其他好文 时间:
2020-03-10 11:43:01
阅读次数:
151
耳中所听恍若你呢喃,心之所向是指你为南,目之所及除你之外尽是荒野。 动态SQL 什么是动态SQL: ? 动态SQL就是根据不同的条件生成不同的SQL语句 if choose(when,otherwise) trim(where,set) foreach 1、搭建环境 建表 sql CREATE TA ...
分类:
数据库 时间:
2020-03-08 18:00:50
阅读次数:
78
1,case when用法 从表中根据时间点不同查询出活动的状态。 sql SELECT ENAME,JOB,SAL,NVL(COMM,100) FROM EMP WHERE SAL zqyjList); xml insert into YZSYLGK_ZQYJ (YJ_ID, ID, YJ_NR, ...
分类:
数据库 时间:
2020-03-08 17:51:10
阅读次数:
71