会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
机械羊
博客园
首页
新随笔
联系
订阅
管理
2025年6月17日
ant design vue:Table的行合并
摘要: 目标:能够方便的实现 图中的样式 想要的使用方式: <div> <a-table :columns="mcolRight" :dataSource="dataRight" :striped="true" :bordered="true" :show-index-column="false" :pag
阅读全文
posted @ 2025-06-17 17:03 机械羊
阅读(10)
评论(0)
推荐(0)
2025年5月22日
达梦数据库查询优化
摘要: 数据库版本: DM Database Server x64 V7.1.5.202-Build(2017.07.17-82922)ENT DB Version: 0x7000a 刚结束接手两个特别长特别复杂又特别慢的sql的优化,记录 优化过程: 将复杂查询语句重构,使用CTE代替,分解成多个简单的、
阅读全文
posted @ 2025-05-22 10:00 机械羊
阅读(21)
评论(0)
推荐(0)
2025年4月16日
MySQL查询优化经验分享
摘要: 记录工作中MYSQL查询优化 版本:5.7.27 select * from table_a where column like '%xxx%' 使用like '%xxx%'会导致全表扫描,如果表里数据较多,查询的列内容很长,就会影响查询效率。 创建全文索引,使用全文索引查询 ALTER TABLE
阅读全文
posted @ 2025-04-16 17:23 机械羊
阅读(26)
评论(0)
推荐(0)
2022年3月28日
this for 腾讯云
摘要: 我的博客即将同步至腾讯云+社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=ea8lnisrj74f
阅读全文
posted @ 2022-03-28 13:21 机械羊
阅读(46)
评论(0)
推荐(0)
2022年2月22日
Git免密
摘要: git记住密码 git config --global credential.helper store 去掉--global即可只对当前项目生效
阅读全文
posted @ 2022-02-22 10:32 机械羊
阅读(16)
评论(0)
推荐(0)
2022年1月13日
the configured user limit (128) on the number of inotify instances has been reached
摘要: echo 256 > /proc/sys/fs/inotify/max_user_instances
阅读全文
posted @ 2022-01-13 15:40 机械羊
阅读(228)
评论(0)
推荐(0)