Varchar (2024)

The varchar, or variable length character field, is the most frequently used field type for storing text less than 256 characters in length.

Sample code:
$field['fieldname'] = array( 'type' => 'varchar', 'length' => 255, // 'not null' => FALSE, // TRUE or FALSE. 'default' => 'some default value', 'description' => t('field fieldname of table tablename.'),)

Note:The length that you set here indicates the maximum number of characters that you want to store.The MySQL's VARCHAR type is declared with a length that indicates the maximum number of characters you want to store. For example, VARCHARCHAR(30) can hold up to 30 characters.

MySQL Field Mapping in the schema.inc file:
 'varchar:normal' => 'VARCHAR'
Max Characters Allowed:
MySQL VersionMax Characters Allowed
MySQL 5.0.2 and earlier255 characters
MySQL 5.0.3 and later65,535 characters
Storage Information :

L + 1 bytes if column values require 0 − 255 bytes, L + 2 bytes if values may require more than 255 bytes where L isL is the byte length of the string that you are storing and not the maximum size that you have set.

Values in VARCHAR columns are variable-length strings. The length can be specified as a value from 0 to 65,535. The effective maximum length of a VARCHAR is subject to the maximum row size (65,535 bytes, which is shared among all columns) and the character set used.

Make sure you are aware of the effects of a multi-byte character set. VARCHAR(255) stores 255 characters, which may be more than 255 bytes.

Varchar (2024)
Top Articles
Latest Posts
Article information

Author: Otha Schamberger

Last Updated:

Views: 5458

Rating: 4.4 / 5 (75 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Otha Schamberger

Birthday: 1999-08-15

Address: Suite 490 606 Hammes Ferry, Carterhaven, IL 62290

Phone: +8557035444877

Job: Forward IT Agent

Hobby: Fishing, Flying, Jewelry making, Digital arts, Sand art, Parkour, tabletop games

Introduction: My name is Otha Schamberger, I am a vast, good, healthy, cheerful, energetic, gorgeous, magnificent person who loves writing and wants to share my knowledge and understanding with you.