我可以创建一个没有 PK 的 InnoDB 表吗?如果是的话,是否会使用二级索引作为聚集索引?

发布于 2024-10-29 13:09:48 字数 106 浏览 1 评论 0原文

是否可以创建没有主键的 InnoDB 表?

由于InnoDB表的结构是围绕PK的聚集索引,那么没有PK的表的结构会是什么?该表仍然是聚集索引,但围绕辅助键吗?

谢谢。

Is it possible to create an InnoDB table without a Primary Key?

Since InnoDB tables are structured as clustered index around the PK, what would be the structure of a table without PK? Would that table still be a clustered index, but around a secondary key?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倒数 2024-11-05 13:09:48

http://www.sqlinfo.net/ mysqldocs/v50/storage-engines.html#innodb-table-and-index

14.2.13。 InnoDB 表和索引结构

如果没有为表定义主键,MySQL 会选择第一个只有 NOT NULL 列的 UNIQUE 索引作为主键,InnoDB 将其用作聚集索引。 如果表中没有这样的索引,InnoDB会在内部生成一个聚集索引,其中的行按行ID排序,InnoDB分配给该表中的行。行 ID 是一个 6 字节字段,随着新行的插入而单调增加。因此,按行 ID 排序的行实际上是按插入顺序排列的。

http://www.sqlinfo.net/mysqldocs/v50/storage-engines.html#innodb-table-and-index

14.2.13. InnoDB Table and Index Structures

If you do not define a PRIMARY KEY for your table, MySQL picks the first UNIQUE index that has only NOT NULL columns as the primary key and InnoDB uses it as the clustered index. If there is no such index in the table, InnoDB internally generates a clustered index where the rows are ordered by the row ID that InnoDB assigns to the rows in such a table. The row ID is a 6-byte field that increases monotonically as new rows are inserted. Thus, the rows ordered by the row ID are physically in insertion order.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文