Reading this question a doubt poped into my head:
- char and varchar can store up to 255 chars
- text can store up to 65k chars
- char size in bytes is number of chars
- varchar size in bytes is number of chars used + 1
So how much bytes does TEXT actually occupies? ~65kb or number of chars used + 1?