Commit fa19bda8 authored by 王鹏鸿's avatar 王鹏鸿

Update gm-sql-rules.md

parent c107a079
# 更美数据库设计开发规范 - 试行版
## MySQL
### 数据库整体设计规范(必读)
#### 设计
#### 库表涉及与使用
1. 一般都使用 INNODB 存储引擎,除非读写比率<1%,才考虑使用 MYISAM 存储引擎;其他存储引擎请在运维\DBA的建议下使用。
2. Stored procedure (包括存储过程,函数,触发器)不建议使用。
3. 请不要使用外键约束,如果数据存在外键关系,请在程序层面实现。 (???)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment