Jump to content

varchar

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Kel-nage (talk | contribs) at 08:55, 10 October 2018 (Removing attempt to insert raw HTML into the page). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.


A varchar or Variable Character Field is a set of character data of indeterminate length. The term varchar refers to a data type of a field (or column) in a database management system which can hold letters and numbers. Varchar fields can be of any size up to a limit, which varies by databases: an Oracle 11g database has a limit of 4000 bytes,[1] a MySQL 5.7 database has a limit of 65,535 bytes (for the entire row)[2] and Microsoft SQL Server 2008 has a limit of 8000 characters (unless varchar(max) is used, which has a maximum storage capacity of 2 gigabytes).[3]

References

  1. ^ "Database Concepts". docs.oracle.com.
  2. ^ "MySQL :: MySQL 5.7 Reference Manual :: 11.4.1 The CHAR and VARCHAR Types". dev.mysql.com.
  3. ^ edmacauley. "char and varchar (Transact-SQL)". msdn.microsoft.com.