SQL in Data Adapter Conf. Wizard

M

M Sameer Haider

I am trying to use SQL statement in my Data Adapter
Configuration wizard. Can anyone help me to write a query
which will selest some field from different tables from a
relational database and write these fields into another
database? Or is there any other better way to do it?
Thanks in advance
 
H

Herfried K. Wagner [MVP]

O

One Handed Man \( OHM - Terry Burns \)

SELECT Customers.CustomerID, Customers.CompanyName, Orders.RequiredDate,
Orders.ShippedDate INTO NEWTABLENAME
FROM Customers INNER JOIN Orders ON Customers.CustomerID =
Orders.CustomerID;



--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 

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

Top