In my Mysql DB I have a field which is used to store user-inputted text, and therefore set as Text and not varchar.
A user can input a maximum of 3000 characters which is then saved into the Text field.
So, should I give the Text field an length of 3000 in Mysql? Since thats the maximum characters a user can submit. More or less like length with varchar works.
Thanks in advance,