mysql - MySql 的单个数据库中可以创建的表的数量是否有限制?

标签 mysql database

我在网上的某个地方看到一篇文章说我们在 MySQL 中可以创建的表的数量有限制吗?或许我误解了。

我只是想确认一下。

最佳答案

引用 - https://dev.mysql.com/doc/refman/5.5/en/database-count-limit.html

MySQL has no limit on the number of databases. The underlying file system may have a limit on the number of directories.

MySQL has no limit on the number of tables. The underlying file system may have a limit on the number of files that represent tables. Individual storage engines may impose engine-specific constraints. InnoDB permits up to 4 billion tables.

关于mysql - MySql 的单个数据库中可以创建的表的数量是否有限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41431678/

相关文章:

sql - 什么时候应该在 SQL Server 中对日志文件使用自动收缩?

android - 如何从 ListView onClickAdapter 的数据库中删除一行?

mysql - 减去日期并在 MySQL 中列出天数

c# - MySQL C# 连接字符串故障转移

php - 如何从数组中取出所有数字1并将其保存到数据库中?

java - 计划结束时删除 Derby table

database - 数据库设计/延迟/并发,令人头疼

sql - 多对多数据映射的最佳实践

mysql - 查询以选择具有相同列值(日期)的最后一条记录

php - 如何从 mysqli 表中获取最后一行?