随笔 - 493  文章 - 0  评论 - 97  阅读 - 239万
上一页 1 2 3 4 5 6 7 ··· 49 下一页
  2024年10月13日
摘要: Array.prototype.sumFields = function(...fields) { return this.reduce((acc, item) => { fields.forEach(field => { acc[field] = (acc[field] || 0) + (Numb 阅读全文
posted @ 2024-10-13 15:06 清清飞扬 阅读(18) 评论(0) 推荐(0) 编辑
  2024年9月27日
摘要: 菜单:文件 -》选项 -》编辑: 阅读全文
posted @ 2024-09-27 11:22 清清飞扬 阅读(25) 评论(0) 推荐(0) 编辑
  2024年9月26日
摘要: 添加第三方插件:el-table-horizontal-scroll ,主要看README即可,此处只添加必要说明: 在要使用此插件的表格上添加指令(v-horizontal-scroll)即可 修改滚动条高度: .el-table-horizontal-scrollbar:hover { filt 阅读全文
posted @ 2024-09-26 11:31 清清飞扬 阅读(160) 评论(0) 推荐(0) 编辑
  2024年9月12日
摘要: 脚本文件: countFolder.sh #!/bin/sh PWD=$1 # 求文件数量 fileCount=`find $PWD \( -name '*.java' -o -name '*.xml' -o -name '*.vue' -o -name '*.js' -o -name '*.cs' 阅读全文
posted @ 2024-09-12 22:30 清清飞扬 阅读(74) 评论(0) 推荐(0) 编辑
  2024年9月8日
摘要: -- 身份证号中提取出生日期 SELECT id,name,id_card,birth_date,gender,length(id_card), str_to_date(substring(id_card, 7, 8), '%Y%m%d') as birth_date2 FROM `wk_staff 阅读全文
posted @ 2024-09-08 09:46 清清飞扬 阅读(225) 评论(0) 推荐(0) 编辑
  2024年9月7日
摘要: 阅读全文
posted @ 2024-09-07 16:47 清清飞扬 阅读(69) 评论(0) 推荐(0) 编辑
  2024年9月4日
摘要: 需要在新建项目时,调整Server URL为:https://start.aliyun.com/ ,如下图: 阅读全文
posted @ 2024-09-04 17:00 清清飞扬 阅读(33) 评论(0) 推荐(0) 编辑
  2024年8月29日
摘要: 查询语句如下: SELECT 高工, SUBSTRING_INDEX(高工, '、', -1), -- 取右边第一个 SUBSTRING_INDEX(高工, '、', 0), SUBSTRING_INDEX(高工, '、', 1), -- 取左边一个(从左往右) SUBSTRING_INDEX(高工 阅读全文
posted @ 2024-08-29 16:05 清清飞扬 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 表数据存储如下图: 1. 求高工字段 - 字节个数 和 字符个数: SELECT length(高工) byte_len, char_length(高工) as char_len FROM `wk_tmp_all` where work_time = '2021-6-7' 运行结果如下图: 阅读全文
posted @ 2024-08-29 15:32 清清飞扬 阅读(61) 评论(0) 推荐(0) 编辑
  2024年8月27日
摘要: From: https://baomidou.com/plugins/block-attack/ BlockAttackInnerInterceptor 是 MyBatis-Plus 框架提供的一个安全插件,专门用于防止恶意的全表更新和删除操作。该插件通过拦截 update 和 delete 语句, 阅读全文
posted @ 2024-08-27 16:39 清清飞扬 阅读(263) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 49 下一页
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示