Can anyone point me at a good tutorial or example on pulling data from different tables in a db (Access) and combining the results in one page. I am comfortable working with one table with ASP/Access and inserting/deleting/searching etc.
Displaying data on a single page from different tables is not any different than displaying data from one table. What is different is the SQL statement that you have to write to get the data you want.
To join Table A with Table B, each table has to have a column that has values that are the same such as an ID column.
So
Select A.*, B.* from TableA A, TableB B
where A.ID = B.ID
You can also select certain columns in the tables based on what you need by replacing the A.*, B.* (which selects all columns in both tables).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.