vote up 3 vote down star
3

What is the "best" way to store international addresses in a database? Answer in the form of a schema and an explanation of the reasons why you chose to normalize (or not) the way you did. Also explain why you chose the type and length of each field.

Note: You decide what fields you think are necessary.

flag

8 Answers

vote up 8 vote down check

Plain freeform text.

Validating all the world's post/zip codes is too hard; a fixed list of countries is too politically sensitive; mandatory state/region/other administrative subdivision is just plain inappropriate (all too often I'm asked which county I live in--when I don't, because Greater London is not a county at all).

More to the point, it's simply unnecessary. Your application is highly unlikely to be modelling addresses in any serious way. If you want a postal address, ask for the postal address. Most people aren't so stupid as to put in something other than a postal address, and if they do, they can kiss their newly purchased item bye-bye.

The exception to this is if you're doing something that's naturally constrained to one country anyway. In this situation, you should ask for, say, the { postcode, house number } pair, which is enough to identify a postal address. I imagine you could achieve similar things with the extended zip code in the US.

link|flag
Greater London may not be a county but, unless you live in the City Of London itself, you'll probably find that you do actually live in Surrey, Kent, Essex or such-like. – belugabob Oct 19 '08 at 18:49
Putting in different administrative subdivisions is handy for filtering by region. How else are you going to know what part of the world/country you sell most products to? – Joeri Sebrechts Oct 19 '08 at 19:08
At best, make country selectable. Countries are created only infrequently. – DrPizza Oct 27 '08 at 20:40
Oh, and no, I don't live in Surrey, Kent, Essex, or any of those. I live in the London borough of Lambeth, which is part of Greater London but not a county. – DrPizza Oct 27 '08 at 20:41
vote up -1 vote down

You need to provide a bit more details about how you are planning to use the data. For example, fields like City, State, Country can either be text in the single table, or be codes which are linked to a separate table with a Foreign Key.

Simplest would be

AddressLine01 (Required, Non blank) AddressLine02 AddressLine03 Landmark City (Required) Pin (Required) Province_District State (Required) Country (Required)

All the above can be Text/Unicode with appropriate field lengths.

Phone Numbers as applicable.

link|flag
Only a bunch of countries has states. – Cem Kalyoncu Sep 18 at 19:16
vote up 1 vote down

Here is a partial picture of my data model for handling both domestic (US) and international addresses.

http://www.flickr.com/photos/86748774@N00/2789563061/

link|flag
vote up 0 vote down

According to the Royal Mail, If you want to be sure of fitting in a UK postal address, you need 7 lines of 56 characters.

link|flag
vote up 2 vote down

In the past I've modeled forms that needed to be international after the ups/fedex shipping address forms on their websites (I figured if they don't know how to handle an international order we are all hosed). The fields they use can be used as reference for setting up your schema.

link|flag
vote up 3 vote down

In general, you need to understand why you want an address. Is it for shipping/mailing? Then there is really only one requirement, have the country separate. The other lines are freeform, to be filled in by the user. The reason for this is the common forwarding strategy for mail : any incoming mail for a foreign country is forwarded without looking at the other address lines. Hence, the detailed information is parsed only by the mail sorter located in the country itself. Like the receiver, they'll be familiar with national conventions.

(UPS may bunch together some small European countries, e.. all the Low Countries are probably served from Belgium - the idea still holds.)

link|flag
vote up 0 vote down

Postcodes can be complicated - for instance, there is no general postcode system in the Republic of Ireland, though postcodes exist for Dublin (all numbered 1-24, with the exception of 6W).

link|flag
vote up 0 vote down

I think adding country/city and address text will be fine. country and city should be separate for reporting. Managers always ask for these kind of reports which you do not expect and I dont prefer running a LIKE query through a large database.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.