首頁 > 軟體

MySQL表欄位數量限制及行大小限制詳情

2022-07-22 18:01:49

欄位數量限制 Column Count Limits

MySQL對於每個表的欄位數量是嚴格控制在4096個,但是實際情況下的限制大小取決於以下因素(也就是基本達不到4096就被限制了):

  • 表的行最大的row size會限制欄位數量,如果當前row size過大就不能加欄位了
  • The storage requirements of individual columns constrain the number of columns that fit within a given maximum row size.
  • 儲存引擎本身也會對欄位數量有限制,比如Innodb最大欄位數量為1017
  • 每張表都有一個字尾為.frm的表定義檔案,表定義可能會影響欄位數量大小

行大小限制 Row Size Limits

row size由以下因素影響:

  • MySQL本身對row size有硬性規定,不能超過65535bytes,即使儲存引擎允許更大的size. 而BLOBTEXT型別列只佔行的9到12個位元組,具體儲存地方不在該行裡;但是其他的比如varchar還是算在行裡的,這裡要注意
  • Innodb儲存引擎對於每行的大小一般限制為頁大小的一半:頁16KB,row size 8KB。另外對於不定長型別也有不同:If a row containing variable-length columns exceeds the InnoDB maximum row size, InnoDB selects variable-length columns for external off-page storage until the row fits within the InnoDB row size limit. The amount of data stored locally for variable-length columns that are stored off-page differs by row format. For more information, see InnoDB Row Formats.簡單來說就是,對於像varchar這種不定長型別,如果這種型別長度超過了Innodb儲存引擎規定的row size,那麼Innodb會選擇頁外儲存直到行大小符合Innodb儲存引擎規定的row size。(但是即使這樣也不能超過65535B,即65535B是包含不定長列中的內容的長度)
  • Different storage formats use different amounts of page header and trailer data, which affects the amount of storage available for rows. Row Size Limit Examples 65535B限制
mysql> CREATE TABLE t (a VARCHAR(10000), b VARCHAR(10000),
       c VARCHAR(10000), d VARCHAR(10000), e VARCHAR(10000),
       f VARCHAR(10000), g VARCHAR(6000)) ENGINE=InnoDB CHARACTER SET latin1;
ERROR 1118 (42000): Row size too large. The maximum row size for the used
table type, not counting BLOBs, is 65535. This includes storage overhead,
check the manual. You have to change some columns to TEXT or BLOBs

看,由於Latin1編碼1個字元是1個位元組,總共不能超過65535個字元,超過就報錯;而常用的utf8mb4編碼最多1個字元佔用4個位元組,所以當使用utf8mb4編碼時,最多隻能有65535/4=16383個字元(實際測肯定會小點,因為還有位元組去記錄變長欄位長度):

test> CREATE TABLE t (a VARCHAR(10000), b VARCHAR(6384)
             ) ENGINE=InnoDB CHARACTER SET utf8mb4
[2022-07-21 15:05:56] [42000][1118] Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs

test> CREATE TABLE t (a VARCHAR(10000), b VARCHAR(6383)
             ) ENGINE=InnoDB CHARACTER SET utf8mb4
[2022-07-21 15:09:51] [42000][1118] Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs
test> CREATE TABLE t (a VARCHAR(10000), b VARCHAR(6382)
             ) ENGINE=InnoDB CHARACTER SET utf8mb4
[2022-07-21 15:09:58] completed in 33 ms

根據提示,如果超過row size限制,可以使用TEXT or BLOBs型別,這個在row size中只佔用9到12個位元組。

8126B限制

65535B的限制主要針對不定長型別的限制,而定長型別的限制更為嚴格,像在Innodb儲存引擎中,只能達到8KB多也就是頁大小的一半(可以修改)。

innodb_strict_mode is enabled in the following example to ensure that InnoDB returns an error if the defined columns exceed the InnoDB row size limit. When innodb_strict_mode is disabled (the default), creating a table that uses REDUNDANT or COMPACT row format succeeds with a warning if the InnoDB row size limit is exceeded.

mysql> SET SESSION innodb_strict_mode=1;
mysql> CREATE TABLE t4 (
       c1 CHAR(255),c2 CHAR(255),c3 CHAR(255),
       c4 CHAR(255),c5 CHAR(255),c6 CHAR(255),
       c7 CHAR(255),c8 CHAR(255),c9 CHAR(255),
       c10 CHAR(255),c11 CHAR(255),c12 CHAR(255),
       c13 CHAR(255),c14 CHAR(255),c15 CHAR(255),
       c16 CHAR(255),c17 CHAR(255),c18 CHAR(255),
       c19 CHAR(255),c20 CHAR(255),c21 CHAR(255),
       c22 CHAR(255),c23 CHAR(255),c24 CHAR(255),
       c25 CHAR(255),c26 CHAR(255),c27 CHAR(255),
       c28 CHAR(255),c29 CHAR(255),c30 CHAR(255),
       c31 CHAR(255),c32 CHAR(255),c33 CHAR(255)
       ) ENGINE=InnoDB ROW_FORMAT=COMPACT DEFAULT CHARSET latin1;
ERROR 1118 (42000): Row size too large (> 8126). Changing some columns to TEXT or BLOB or using
ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768
bytes is stored inline.

Row Limits總結

Row Limits 一般為 MySQL本身65535B限制和儲存引擎8126B限制(預設Innodb)。

  • 針對不定長型別,如varchar,一般首先收到限制的是MySQL本身65535B的限制。受不到儲存引擎限制是因為,不定長型別如果長度超過8126B,會採用頁外儲存,也就是不定長型別的長度過長的話計入65535B而不計入8126B(大致可以這麼理解)。
  • 針對定長型別,首先會受到儲存引擎8126B限制。

到此這篇關於MySQL表欄位數量限制及行大小限制詳情的文章就介紹到這了,更多相關MySQL行大小限制內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com