Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a23144bb1f1abde9

Jump to content

Varchar

From Wikipedia, the free encyclopedia

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 which can hold letters and numbers.[1] 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,[2] a MySQL 5.7 database has a limit of 65,535 bytes (for the entire row)[3] and Microsoft SQL Server 2008 has a limit of 8000 bytes (unless varchar(max) is used, which has a maximum storage capacity of 2 gigabytes).[4]

nvarchar is a variation of varchar,[5] and which is more suitable depends on the use case.[clarification needed]

See also

[edit]

References

[edit]
  1. "The VARCHAR data type". www.ibm.com. 2018-10-25. Retrieved 2025-11-25.
  2. "Database Concepts". docs.oracle.com.
  3. "MySQL :: MySQL 5.7 Reference Manual :: 11.4.1 The CHAR and VARCHAR Types". dev.mysql.com.
  4. edmacauley (6 June 2024). "char and varchar (Transact-SQL)". msdn.microsoft.com.
  5. SQL Server differences of char, nchar, varchar and nvarchar data types