ousoonerjoe
Programmer
Using 2008 R2.
We're finally getting to where we can convert the old table structures into a real database with relational structures and everything! (long story). I am looking for suggestions for an Addresses Table that supports international addresses. There's a million different ways to do this, but would like some your thoughts on this.
Currently, I'm looking at:
--------------------------------------------------
“Crash programs fail because they are based on the theory that, with nine women pregnant, you can get a baby a month.” --Wernher von Braun
--------------------------------------------------
We're finally getting to where we can convert the old table structures into a real database with relational structures and everything! (long story). I am looking for suggestions for an Addresses Table that supports international addresses. There's a million different ways to do this, but would like some your thoughts on this.
Currently, I'm looking at:
Code:
AddressId INT SEED
Street1 VARCHAR(60)
Street2 VARCHAR(60)
Street3 VARCHAR(60)
City VARCHAR(50)
StateId SMALLINT
ProvinceId SMALLINT
CountryId SMALLINT
--------------------------------------------------
“Crash programs fail because they are based on the theory that, with nine women pregnant, you can get a baby a month.” --Wernher von Braun
--------------------------------------------------