LadyMarmalade
Registered User.
- Local time
- Today, 10:01
- Joined
- Sep 23, 2014
- Messages
- 26
Hi there;
I'm making a library database program thing...
There's an option for the user to view all books on loan.
I have two tables:
Books, which has columns ID*, ISBN, Author, Title, Year, Location
BorrowerStorage, which has columns Book ID, Name, Email Address, Desk Number
Book ID in BorrowerStorage is related to the Books primary key.
Now, for the viewing all books on loan, I want it to produce a read only table which contains all the entries from the BorrowerStorage table and the corresponding Title/Author columns (i.e. the records for which the ID in Books column = BookID in Borrower Storage column)...
How do I go about doing this? Any suggestions?
I've been using VBA so far and would like to continue via that so if that's possible, that would make life a lot easier...If not, just shout me down.
Thanks!
I'm making a library database program thing...
There's an option for the user to view all books on loan.
I have two tables:
Books, which has columns ID*, ISBN, Author, Title, Year, Location
BorrowerStorage, which has columns Book ID, Name, Email Address, Desk Number
Book ID in BorrowerStorage is related to the Books primary key.
Now, for the viewing all books on loan, I want it to produce a read only table which contains all the entries from the BorrowerStorage table and the corresponding Title/Author columns (i.e. the records for which the ID in Books column = BookID in Borrower Storage column)...
How do I go about doing this? Any suggestions?
I've been using VBA so far and would like to continue via that so if that's possible, that would make life a lot easier...If not, just shout me down.
Thanks!