Tagged Questions
The tinytext tag has no wiki summary.
5
votes
4answers
2k views
For innodb table in MySQL, which is faster: varchar(255) or tinytext?
I am optimizing some innodb tables in MySQL, so I ran procedure analsye() to see what the recommendations were.
The results recommended tinytext instead of varchar(255) for all the fields that were ...
0
votes
2answers
261 views
0
votes
2answers
174 views
MySQL UTF Text Capacity
I have column named "summary" (tinytext, utf8_turkish_ci). I know it can store 255 byte also 255 chars. But if i use unicode chars like Ç, Ö, Ü storage capacitiy naturally decreasing. If my visitor ...