Appending data where the column names are slightly different

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I want to append data from various tables with different column headings
(e.g. tables having same column with different names such as loan #, Loan
Number, Loan No.) into a large table. Is there any way to append the data
programmatically using column position instead? Thanks.
Purnima
 
You can always use aliases in your query.

SELECT A AS Field1, B AS Field2 INTO Table1 FROM Table2
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top