DBMS-MySQL数据库
文章平均质量分 83
缘在有你
这个作者很懒,什么都没留下…
展开
-
PowerDesigner MySQL 根据字段name 自动生成 comment 注释
PowerDesigner MySQL 根据字段name 自动生成 comment 注释原创 2022-12-30 17:08:36 · 960 阅读 · 1 评论 -
MySQL 索引分析与优化
MySQL 数据库索引分析与优化原创 2022-06-22 23:03:59 · 173 阅读 · 0 评论 -
2021-09-03 Mysql查询优化
Mysql查询优化查询推荐原则查询在我们日常开发中,MySQL的查询使用是最为频繁的操作。推荐原则应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:select id from t where num is null可以在num上设置默认值0,确保表中num列没有null值,然后这样查询:select id from t where num=0原创 2021-10-14 15:25:14 · 77 阅读 · 0 评论