Skip to content

Commit

Permalink
Update 03-basic-use.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bartdong authored Sep 19, 2024
1 parent b166bc5 commit e6b687a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/guide/03-basic-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ CREATE TABLE
### 1.5、几种表的适用场景简述

上述几种表类型有各自的使用场景,合理的使用表类型,对SQL的性能会带来很大的提升:

| 分布式表类型 | 描述 | 适用场景 | 使用约束 |
|--------------|------|----------|----------|
| 分片表 | 表记录按分片键值进行hash打散到所有分片中,每个分片都只有一部分数据。 | 数据量特别大,并且查询、删除、修改该表的数据时可以指定分片键作为操作条件,大多数语句不涉及跨库分布式事务访问。 | 查询、更新、删除数据时需要指定分片键;分片键字段类型、长度不能修改,分片键值不能直接更新;目前不能基于非分片键字段创建主键或者唯一索引。 |
Expand Down

0 comments on commit e6b687a

Please sign in to comment.