Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stripping Email Address From Linked Table

Status
Not open for further replies.

ebizleads

Technical User
Sep 14, 2005
57
US
I have a linked fixed width table containing undeliverable messages from my email campaign. I need to strip out any occurance of an email address and append them to a table.

Thanks Guys!

Ebizleads
 
That's a bit fuzzy but assuming
[li]The email's are in a table called "tblUndeliver" and a field named "email" and[/li]
[li]You want to append them to a table called tblSavedEmail[/li]
Code:
INSERT INTO tblSavedEmail(email)
Select email From tblUndeliver
You'll need to add appropriate constraints in a Where clause if such there be.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top