SQL Statement

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

Guest

Please help!!!

I am trying to write an SQL command that will display a
all the data from table A and data from column 1 in table
B.

The two tables are linked in a one to many realtionship,
with table A having multiple copies of data held in column
1 of Table B.

Thanks

Nick
 
SELECT TableA.FieldMany
FROM TableA INNER JOIN TableB ON TableA.FieldMany = TableB.FieldOne;
 

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