VARCHAR(n) character string with variable length, maximum 65,535 characters
mysql>
mysql> CREATE TABLE employee(
-> id INT,
-> eName VARCHAR(10)
-> );
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> drop table employee;
Query OK, 0 rows affected (0.00 sec)
Related examples in the same category