0

I have used longtext data type, in which I need to keep appending the newly comming text.

Is there any limit when this database item get saturated ?

Later on fetch this record value for getting list of words in it.

user123
  • 5,269
  • 16
  • 73
  • 121

1 Answers1

2

According to MySQL docs, maximum length of LONGTEXT is 4,294,967,295 (2^32) chars.

Xayan
  • 31
  • 3