Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit fe85a84

Browse files
fix: 修復 實體-屬性-值 (EAV) 英文簡稱命名錯誤
1 parent 17c39ec commit fe85a84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎docs/12.数据库/03.关系型数据库/02.Mysql/06.Mysql性能优化.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ permalink: /pages/396816/
4343
应该避免的设计问题:
4444

4545
- **太多的列** - 设计者为了图方便,将大量冗余列加入表中,实际查询中,表中很多列是用不到的。这种宽表模式设计,会造成不小的性能代价,尤其是 `ALTER TABLE` 非常耗时。
46-
- **太多的关联** - 所谓的实体 - 属性 - 值(EVA)设计模式是一个常见的糟糕设计模式。Mysql 限制了每个关联操作最多只能有 61 张表,但 EVA 模式需要许多自关联。
46+
- **太多的关联** - 所谓的实体 - 属性 - 值(EAV)设计模式是一个常见的糟糕设计模式。Mysql 限制了每个关联操作最多只能有 61 张表,但 EAV 模式需要许多自关联。
4747
- **枚举** - 尽量不要用枚举,因为添加和删除字符串(枚举选项)必须使用 `ALTER TABLE`
4848
- 尽量避免 `NULL`
4949

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /