摘要: 生成器的创建和使用 http://laravelacademy.org/post/4317.html 阅读全文
posted @ 2018-07-26 19:50 程序生(Codey) 阅读(166) 评论(0) 推荐(0) 编辑
摘要: http://laravelacademy.org/post/7459.html 阅读全文
posted @ 2018-07-26 19:49 程序生(Codey) 阅读(268) 评论(0) 推荐(0) 编辑
摘要: Lumen 中配置邮件 https://blog.csdn.net/glovenone/article/details/54344013 Lareval 比 Lumen 多了一个步骤 https://blog.csdn.net/zhezhebie/article/details/79425009 h 阅读全文
posted @ 2018-07-26 19:44 程序生(Codey) 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 官方文档:https://open-doc.dingtalk.com/microapp/index https://open-doc.dingtalk.com/docs/doc.htm?spm=a219a.7629140.0.0.OxR4Th&treeId=168&articleId=104882& 阅读全文
posted @ 2018-07-26 19:37 程序生(Codey) 阅读(1055) 评论(0) 推荐(0) 编辑
摘要: 当统计多条的三个参数在不同时间段的数据的sum,又只能写在同一个sql上时,可以考虑union all三次查询, 该语句用了三次统计分别统计 参数一,参数二,参数三 的对应记录的dates,再做合并,有点好性能,只为满足需求的无奈之举! 阅读全文
posted @ 2018-07-26 19:36 程序生(Codey) 阅读(998) 评论(0) 推荐(0) 编辑
摘要: 时间: time Y-m-d 向前减一天,time的昨天 DATE_SUB(time,INTERVAL 1 DAY) 向后加一天,time的明天 DATE_ADD(time,INTERVAL 1 DAY) select date_add(now(), interval 1 day); - 加1天 s 阅读全文
posted @ 2018-07-26 19:25 程序生(Codey) 阅读(162) 评论(0) 推荐(0) 编辑