For the complete documentation index, see llms.txt. This page is also available as Markdown.

LONG and LONG VARCHAR

LONG and LONG VARCHAR are compatibility synonyms for the MEDIUMTEXT string data type.

LONG and LONG VARCHAR are synonyms for MEDIUMTEXT.

CREATE TABLE t1 (a LONG, b LONG VARCHAR);

DESC t1;
+-------+------------+------+-----+---------+-------+
| Field | Type       | Null | Key | Default | Extra |
+-------+------------+------+-----+---------+-------+
| a     | mediumtext | YES  |     | NULL    |       |
| b     | mediumtext | YES  |     | NULL    |       |
+-------+------------+------+-----+---------+-------+

This page is licensed: CC BY-SA / Gnu FDL

spinner

Last updated

Was this helpful?