The Essential Guide to MySQL VARCHAR Data Type
Summary: This tutorial introduces you to the MySQL VARCHAR
datatype and discusses some important features of VARCHAR
.
Introduction to MySQL VARCHAR data type
MySQL VARCHAR
is the variable-length string whose length can be up to 65,535. MySQL stores a VARCHAR
value as a 1-byte or 2-byte length prefix plus actual data.
The length prefix specifies the number of bytes in the value. If a column requires less than 255 bytes, the length prefix is 1 byte. In case the column requires more than 255 bytes, the length prefix is two length bytes.
The maximum length, however, is subject to the maximum row size (65,535 bytes) and the character set used. It means that the total length of all columns should be less than 65,535 bytes.
Let’s take a look at an example.
We will create a new table that has two columns s1
and s2
with the length of 32765(+2 for length prefix) and 32766 (+2). Note that 32765+2+32766+2=65535 is the maximum row size.
CREATE TABLE IF NOT EXISTS varchar_test (
s1 VARCHAR(32765) NOT NULL,
s2 VARCHAR(32766) NOT NULL
) CHARACTER SET 'latin1' COLLATE LATIN1_DANISH_CI;
The statement created the table successfully. However, if we increase the length of the s1
column by 1.
CREATE TABLE IF NOT EXISTS varchar_test_2 (
s1 VARCHAR(32766) NOT NULL, -- error
s2 VARCHAR(32766) NOT NULL
) CHARACTER SET 'latin1' COLLATE LATIN1_DANISH_CI;
MySQL will issue the error message:
Error Code: 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 0.000 sec
As you can see, the row size is too large and the statement failed.
If you insert a string whose length is greater than the length of a VARCHAR
column, MySQL will issue an error. Consider the following example:
CREATE TABLE items (
id INT PRIMARY KEY AUTO_INCREMENT,
title VARCHAR(3)
);
INSERT INTO items(title)
VALUES('ABCD');
In this example, MySQL issued the following error message:
Error Code: 1406. Data too long for column 'title' at row 1 0.000 sec
MySQL VARCHAR and spaces
MySQL does not pad space when it stores the VARCHAR
values. Also, MySQL retains the trailing spaces when it inserts or selects VARCHAR
values. See the following example:
INSERT INTO items(title)
VALUES('AB ');
SELECT
id, title, length(title)
FROM
items;
However, MySQL will truncate the trailing spaces when inserting a VARCHAR
the value that contains trailing spaces which cause the column length to exceed. In addition, MySQL issues a warning. Let’s see the following example:
INSERT INTO items(title)
VALUES('ABC ');
This statement inserts a string whose length is 4 into the title
column. MySQL still inserts the string, however, it truncates the trailing space before inserting the value.
1 row(s) affected, 1 warning(s): 1265 Data truncated for column 'title' at row 1
You can verify it by using the following query:
SELECT
title, LENGTH(title)
FROM
items;
In this tutorial, you have learned how to use MySQL VARCHAR
datatype to store variable strings in the database.
0 Comments
CAN FEEDBACK
Emoji