I have 2 tables for a library.
Table1: has the book details with the book-number being the primary key
Table2: has the details of borrowed books. This table also has the column book-number- linked to Table1, using the same column.
I need to make an SQL query that gives the list of AVAILABLE books (IN OTHER WORDS, REMOVING THE BORROWED BOOKS). How do I do this?
Table1: has the book details with the book-number being the primary key
Table2: has the details of borrowed books. This table also has the column book-number- linked to Table1, using the same column.
I need to make an SQL query that gives the list of AVAILABLE books (IN OTHER WORDS, REMOVING THE BORROWED BOOKS). How do I do this?