Home › Forums › Back End › Long String in PHPMYSQL › Reply To: Long String in PHPMYSQL
November 26, 2013 at 5:40 pm
#157192
Participant
i want to add up to 50,000 words…
First, MySQL doesn’t count “words.” It counts bytes. If you’re talking about ASCII characters (e.g., the English alphabet and other characters that can be found on a typical US keyboard), then each character is one byte. Characters in other languages can be between one and four bytes apiece.
For 50,000 words, I would guess you would need to use the LONGTEXT
type. MySQL’s MEDIUMTEXT
type holds about 16MB, while LONGTEXT
can support up to 4GB.