Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
gm-sql-rules
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
gm-sql-rules
Commits
a517838d
Commit
a517838d
authored
Aug 07, 2020
by
王鹏鸿
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update gm-sql-rules.md
parent
79eb7afb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
gm-sql-rules.md
gm-sql-rules.md
+1
-2
No files found.
gm-sql-rules.md
View file @
a517838d
# 更美数据库设计开发规范 - 试行版
## MySQL
### 数据库整体设计规范(必读)
####
库表设计与使用
####
设计
1.
一般都使用 INNODB 存储引擎,除非读写比率<1%,才考虑使用 MYISAM 存储引擎;其他存储引擎请在运维
\D
BA的建议下使用。
2.
Stored procedure (包括存储过程,函数,触发器)不建议使用。
3.
请不要使用外键约束,如果数据存在外键关系,请在程序层面实现。 (???)
...
...
@@ -14,7 +14,6 @@
1.
命名应使用富有意义的英文词汇,多个单词组成的,中间以下划线分割。
2.
命名只能使用英文字母,数字和下划线。
3.
命名避免使用 Mysql 的保留字(详见附录 A)和系统关键字。
4.
命名长度以不超过 15 个字符为宜(避免超过 20)。
5.
命名全部采用小写,并且名称前后不能加引号。
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment