Hi all, I have a customer database and I've imported 36000 new customers from an excel file into a new table, called tblLeads.
I have changed the field names and types etc in this new table to match the field names already created in the existing database. The table looks like this:-
tblLeads:-
ID (PK just so it has one)
TitleID
FirstName_Initial
Surname
House_FlatNumber
Street
Town_CityID
StatusID
Postcode
HomePhoneNumber
So these are all the new customers in the new table.
I'm sure this is easy but I'm stuck...
My existing tables are like this...
tblCustomers:-
CustomerNumber (PK)
TitleID
FirstName_Initial
Surname
House_FlatNumber
Street
Town_CityID
StatusID
Then...
tblCustomerPostCode:-
CustomerNumber
Postcode
and..
tblHomePhoneNumber:-
CustomerNumber
HomePhoneNumber
So how can I append the data to my existing tables since the matching phone number and postcode has to go into a separate table? I'm a bit stuck, many thanks for any help!!!
I have changed the field names and types etc in this new table to match the field names already created in the existing database. The table looks like this:-
tblLeads:-
ID (PK just so it has one)
TitleID
FirstName_Initial
Surname
House_FlatNumber
Street
Town_CityID
StatusID
Postcode
HomePhoneNumber
So these are all the new customers in the new table.
I'm sure this is easy but I'm stuck...
My existing tables are like this...
tblCustomers:-
CustomerNumber (PK)
TitleID
FirstName_Initial
Surname
House_FlatNumber
Street
Town_CityID
StatusID
Then...
tblCustomerPostCode:-
CustomerNumber
Postcode
and..
tblHomePhoneNumber:-
CustomerNumber
HomePhoneNumber
So how can I append the data to my existing tables since the matching phone number and postcode has to go into a separate table? I'm a bit stuck, many thanks for any help!!!