Per la versione MySql 8.0.
Requisiti di archiviazione di tipo numerico
Data Type Storage Required
TINYINT 1 byte
SMALLINT 2 bytes
MEDIUMINT 3 bytes
INT, INTEGER 4 bytes
BIGINT 8 bytes
FLOAT(p) 4 bytes if 0 <= p <= 24, 8 bytes if 25 <= p <= 53
FLOAT 4 bytes
DOUBLE, REAL 8 bytes
DECIMAL(M,D), NUMERIC(M,D) Varies; see following discussion
BIT(M) approximately (M+7)/8 bytes
I valori per le colonne DECIMAL (e NUMERIC) sono rappresentati utilizzando un formato binario che racchiude nove cifre decimali (base 10) in quattro byte. L'archiviazione per le parti intere e frazionarie di ciascun valore viene determinata separatamente. Ogni multiplo di nove cifre richiede quattro byte e le cifre "rimanenti" richiedono una frazione di quattro byte. La memoria richiesta per le cifre in eccesso è fornita dalla seguente tabella.
Requisiti di archiviazione del tipo di data e ora Per le colonne TIME, DATETIME e TIMESTAMP, l'archiviazione richiesta per le tabelle create prima di MySQL 5.6.4 differisce dalle tabelle create da 5.6.4 in poi. Ciò è dovuto a una modifica in 5.6.4 che consente a questi tipi di avere una parte frazionaria, che richiede da 0 a 3 byte.
Data Type Storage Required Before MySQL 5.6.4 Storage Required as of MySQL 5.6.4
YEAR 1 byte 1 byte
DATE 3 bytes 3 bytes
TIME 3 bytes 3 bytes + fractional seconds storage
DATETIME 8 bytes 5 bytes + fractional seconds storage
TIMESTAMP 4 bytes 4 bytes + fractional seconds storage
A partire da MySQL 5.6.4, lo spazio di archiviazione per ANNO e DATA rimane invariato. Tuttavia, TIME, DATETIME e TIMESTAMP sono rappresentati in modo diverso. DATETIME è impacchettato in modo più efficiente, richiedendo 5 anziché 8 byte per la parte non frazionaria e tutte e tre le parti hanno una parte frazionaria che richiede da 0 a 3 byte, a seconda della precisione frazionaria dei valori memorizzati.
Fractional Seconds Precision Storage Required
0 0 bytes
1, 2 1 byte
3, 4 2 bytes
5, 6 3 bytes
Ad esempio, TIME (0), TIME (2), TIME (4) e TIME (6) utilizzano rispettivamente 3, 4, 5 e 6 byte. TIME e TIME (0) sono equivalenti e richiedono la stessa memoria.
Per dettagli sulla rappresentazione interna dei valori temporali, consultare MySQL Internals: Important Algorithms and Structures.
Requisiti di archiviazione del tipo di stringa Nella tabella seguente, M rappresenta la lunghezza della colonna dichiarata in caratteri per tipi di stringa non binari e byte per tipi di stringa binari. L rappresenta la lunghezza effettiva in byte di un determinato valore di stringa.
Data Type Storage Required
CHAR(M) The compact family of InnoDB row formats optimize storage for variable-length character sets. See COMPACT Row Format Characteristics. Otherwise, M × w bytes, <= M <= 255, where w is the number of bytes required for the maximum-length character in the character set.
BINARY(M) M bytes, 0 <= M <= 255
VARCHAR(M), VARBINARY(M) L + 1 bytes if column values require 0 − 255 bytes, L + 2 bytes if values may require more than 255 bytes
TINYBLOB, TINYTEXT L + 1 bytes, where L < 28
BLOB, TEXT L + 2 bytes, where L < 216
MEDIUMBLOB, MEDIUMTEXT L + 3 bytes, where L < 224
LONGBLOB, LONGTEXT L + 4 bytes, where L < 232
ENUM('value1','value2',...) 1 or 2 bytes, depending on the number of enumeration values (65,535 values maximum)
SET('value1','value2',...) 1, 2, 3, 4, or 8 bytes, depending on the number of set members (64 members maximum)