What would the SQL equivalent be to:<br><br>For every record in CONTACTS Table, create a new record (Append) in MAILINGS Table with the [ContactID] (from the CONTACTS Table) so that Mailings.ContactID=Contacts.ContactID plus make Mailings.MailDate=#5/15/00# and Mailings.MailType="NewsLetter"<br><br>Note:<br>That's it! That's all I want to do but I have been stymied. Mailings only has three fields, ContactID, MailDate and MailType. So for every Contact, I want a new record in Mailings.<br><br>More Info.:<br>ContactID in CONTACTS Table is an AutoNumber Field so they are unique and the ContactID filed is in a one to many relationship with the ContactID field in MAILINGS Table.<br><br>ContactID in CONTACTS Table is NOT a Primary Key. It is indexed - NO Duplicates.<br><br>ContactID in MAILINGS Table is also indexed but Duplicates are allowed.<br><br>Would appreciate any assistance. I am probably leaving out one important step but I can't figure out what it is.<br>