会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
一隅桥畔
将来的你会感谢,现在奋斗的你
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
9
10
···
13
下一页
2022年9月29日
oracle模糊查询匹配多个字段、关键字
摘要: -- 模糊匹配多个关键字 and regexp_like (name, '(刘|王二花)') and regexp_like (name, '刘|王二花') -- 模糊查询匹配多个字段 and instr(dept_code || dept_name, #{deptName}) > 0
阅读全文
posted @ 2022-09-29 10:58 一隅桥畔
阅读(218)
评论(0)
推荐(0)
2022年9月28日
ORACLE SQL查询倒数第二条
摘要: -- 查询倒数第二条 select * from (select row_number() over(order by pay_no desc) rn, t.* from tm_pm_pay t where hospital_code = '0002') where rn = 2
阅读全文
posted @ 2022-09-28 10:02 一隅桥畔
阅读(800)
评论(0)
推荐(0)
2022年9月17日
CSND不登录复制
摘要: 1、在页面上点击右键,选择检查(或者按F12快捷键) 2、在右侧的style样式中搜索content_views,将其中的勾选去掉,然后就可以复制了
阅读全文
posted @ 2022-09-17 12:08 一隅桥畔
阅读(54)
评论(0)
推荐(0)
Excel POI设置自适应宽度
摘要: /** * 自适应列宽 * @param sheet * @param columnLength 列数 */ private static void setSizeColumn(HSSFSheet sheet, int columnLength) { for (int columnNum = 0;
阅读全文
posted @ 2022-09-17 11:25 一隅桥畔
阅读(730)
评论(0)
推荐(0)
2022年9月15日
vue打包时报错asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
摘要: 错误原因,资源(asset)和入口起点超过指定文件限制,需要在vue.config.js文件内做如下配置: //方法1 module.exports = { //webpack配置 configureWebpack: { //关闭webpack的性能提示 performance: { hints:f
阅读全文
posted @ 2022-09-15 16:40 一隅桥畔
阅读(2553)
评论(0)
推荐(0)
2022年9月13日
sql server自动生成拼音码
摘要: --执行语句生成函数fn_GetPy create function fn_GetPy(@str nvarchar(4000)) returns nvarchar(4000) --WITH ENCRYPTION as begin declare @intLen int declare @strRet
阅读全文
posted @ 2022-09-13 19:06 一隅桥畔
阅读(98)
评论(0)
推荐(0)
2022年9月8日
js获取对象的属性值
摘要: //1、通过. var age = obj.age; //1、通过[] var age = obj[age]; //注:[key]里面的key可以是动态的
阅读全文
posted @ 2022-09-08 19:28 一隅桥畔
阅读(53)
评论(0)
推荐(0)
2022年8月29日
list集合根据某字段获取最大值、最小值等
摘要: //最大值 int maxValue = list.stream().mapToInt(User::getScore).max().getAsInt(); long maxValue = list.stream().mapToLong(User::getScore).max().getAsLong(
阅读全文
posted @ 2022-08-29 18:18 一隅桥畔
阅读(1851)
评论(0)
推荐(1)
2022年8月24日
vue调用后端接口导出excel文件
摘要: //导出excel文件 exportExcel() { applyOrderExportExcel(this.listQuery).then((res) => { const fileName = `${+new Date()}.xlsx`; const blob = new Blob([res],
阅读全文
posted @ 2022-08-24 14:36 一隅桥畔
阅读(476)
评论(0)
推荐(0)
2022年8月12日
textarea自增高度、自动换行
摘要: //调整高度函数 function setHeight(element) { //通过css属性,将元素高度设置为文本高度 $(element).css({'height':'auto','overflow-y':'hidden'}).height(element.scrollHeight); }
阅读全文
posted @ 2022-08-12 19:50 一隅桥畔
阅读(663)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
···
13
下一页
公告