![]() |
![]() |
1. Dengan menggunakan Visual Data Manager aktifkan Biblio.Mdb
2. Gunakan perintah SQL untuk :
3. Tampilan recordset dengan kolom ISBN, Author dari tabel TitleAuthor dan Authors.
4. Tampilan recordset dengan kolom Title, Author, Name, dari tabel Titles, Title Author, Authors, dan Publishers (4 Table)
SELECT Titles.Title, Authors.Author, Publishers.Name
FROM (Titles INNER JOIN Publishers ON Titles.PubID = Publishers.PubID) INNER JOIN (Authors INNER JOIN [Title Author] ON Authors.Au_ID = [Title
Author].Au_ID) ON Titles.ISBN = [Title Author].ISBN;