1.关联限制
The maximum number of tables that can be referenced in a single join is 61.
2.数据库和表的限制
MySQL has no limit on the number of databases.
MySQL has no limit on the number of tables.
3.表大小的限制
mysql对表没有限制,都是依赖操作系统的限制
以下情况可能会让你遇到full table error:
(1).磁盘满了
(2).innodb表用完了表空间
(3).分区表大于1TB的建议使用多个表空间
(4).遇到了操作系统的文件限制,myisam表的文件系统限制是2GB
4.表的列和行的限制
列限制:
MySQL has hard limit of 4096 columns per table
(1).行的大小会限制列的个数
(2).InnoDB has a limit of 1017 columns per table
(3).Each table has an .frm file that contains the table definition
行限制:
(1).最大的行限制是65,535 bytes
mysql的限制
最新推荐文章于 2024-04-25 11:40:00 发布