I'm designing a database table and once again asking myself the same stupid question: How long should the firstname field be?
Does anyone have a list of reasonable lengths for the most common fields, such as first name, last name, and email address?
|
|
UK Government Data Standards Catalogue details the UK standards for this kind of thing. It suggests 35 characters for each of Given Name and Family Name, or 70 characters for a single field to hold the Full Name, and 255 characters for an email address. Amongst other things.. |
|||||||||||||||||||
|
|
I just queried my database with millions of customers in the USA.
This should be a decent statistical spread for people in the US. If you have localization to consider, the numbers could vary significantly. |
|||||||||||
|
|
I would say to err on the high side. Since you'll probably be using varchar, any extra space you allow won't actually use up any extra space unless somebody needs it. I would say for names (first or last), go at least 50 chars, and for email address, make it at least 128. There are some really long email addresses out there. Another thing I like to do is go to Lipsum.com and ask it to generate some text. That way you can get a good idea of just what 100 bytes looks like. |
|||||||
|
|
Just make sure you allow non-alpha characters in the names! points at hyphen in his last name |
|||
|
|
|
I pretty much always use a power of 2 unless there is a good reason not to, such as a customer facing interface where some other number has special meaning to the customer. If you stick to powers of 2 it keeps you within a limited set of common sizes, which itself is a good thing, and it makes it easier to guess the size of unknown objects you may encounter. I see a fair number of other people doing this, and there is something aesthetically pleasing about it. It generally gives me a good feeling when I see this, it means the designer was thinking like an engineer or mathemetician. Though I'd probably be concerned if only prime numbers were used. :) |
||||
|
|
|
One note: don't require both a "first name" and a "last name". Some people, like me, only have one name. |
|||
|
|
|
firstname : 35 lastname : 35 email : 255 url : 60+ according to server and browser city : 45 address : 90 |
|||
|
|
|
Just looking though my email archives, there are a number of pretty long "first" names (of course what is meant by first is variable by culture). One example is Krishnamurthy - which is 13 letters long. A good guess might be 20 to 25 letters based on this. Email should be much longer since you might have firstname.lastname@somedomain.com. Also, gmail and some other mail programs allow you to use firstname.lastname+sometag@somedomain.com where "sometag" is anything you want to put there so that you can use it to sort incoming emails. I frequently run into web forms that don't allow me to put in my full email address without considering any tags. So, if you need a fixed email field maybe something like 25.25+15@20.3 in characters for a total of 90 characters (if I did my math right!). |
|||
|
|
|
I usually go with: Firstname: 30 chars If I am concerned about long fields for the names, I might sometimes go with 50 for the name fields too, since storage space is rarely an issue these days. |
|||
|
|
|
I wanted to find the same and the UK Government Data Standards mentioned in the accepted answer sounded ideal. However none of these seem to exist any more - would be interested to know what has happened to them and whether any equivalent accepted standards exist... |
|||
|
|
it is varchar right? So it then doesn't matter if you use 50 or 25, better be safe and use 50, that said I believe the longest I have seen is about 19 or so. Last names are longer |
|||
|
|
|
If you need to consider localisation (for those of us outside the US!) and it's possible in your environment, I'd suggest: Define data types for each component of the name - NOTE: some cultures have more than two names! Then have a type for the full name, Then localisation becomes simple (as far as names are concerned). The same applies to addresses, BTW - different formats! |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.