Answers for "varchar max length"

2

varchar max length

TINYTEXT              255
TEXT/VARCHAR          65,535
MEDIUMTEXT    	      16,777,215
LONGTEXT              4,294967,295
Posted by: Guest on November-21-2020
3

varchar max length

65,535

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.
Posted by: Guest on July-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language