Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Insert into table1(field1, field2, field3)
Select table2.field4, table3.field4, table2.field6 from table2 inner join table3 on table2.idfield = table3.idfield{/code]
Now one must consider when doing this, how the join will work. If you have a one to one relationship between the tables your insert will contain one record for each id field (say the customer ID for instance). If there is a one to many relationship, then there will be muliple entries for each id field based on the number of times it appears inthe table with the many side of the relationship. This is fine if it is what you want, but if it is not, you need to specify a way to determine which one record from the many table that you want. This can get somewhat complex.
Questions about posting. See faq183-874
Click here to learn [url=http://www.google.com/tsunami_relief.html]Ways to help with Tsunami Relief[/url]
Insert into table1(field1, field2, field3)
Select table2.field4, table3.field4, table2.field6 from table2 inner join table3 on table2.idfield = table3.idfield{/code]
Where in the Query is this insertion placed?
Am I assuming that to be placed in the Criteria field of the Query Create mode?
Cheers.