I've got tables like this:
Table Articles
---------------
AID(PK) Name PublisherID Words
Table Books
---------------
BID(PK) Title PublisherID Date
I want to merge them like:
Table Total
---------------
Title PublisherID
In this new table, Name in Table.Articles will belong to Title column, because.. Articles.Name and Books.Title mean the same thing :)
Any answers will be very appreciated :)
Thanks