What is a reasonable length limit on person “Name” fields?

后端 未结 11 989
心在旅途
心在旅途 2020-12-22 18:45

I have a simple webform that will allow unauthenticated users to input their information, including name. I gave the name field a limit of 50 characters to coincide with my

11条回答
  •  隐瞒了意图╮
    2020-12-22 19:11

    depending on who is going to be using your database, for example African names will do with varchar(20) for last name and first name separated. however it is different from nation to nation but for the sake saving your database resources and memory, separate last name and first name fields and use varchar(30) think that will work.

提交回复
热议问题