This document provides instructions for setting up and querying a Microsoft Access database to store information about books, publishers, authors, branches, and inventory. It involves creating multiple tables, adding data to the tables, and writing queries to retrieve specific data from the tables, such as listings of books by publishers, price ranges, branch inventory, and author information.
Download as DOC, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
143 views
Homework 1
This document provides instructions for setting up and querying a Microsoft Access database to store information about books, publishers, authors, branches, and inventory. It involves creating multiple tables, adding data to the tables, and writing queries to retrieve specific data from the tables, such as listings of books by publishers, price ranges, branch inventory, and author information.
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1
HOMEWORK 1.
1: MICROSOFT ACCESS DATABASE
It is considered a database that gathers and organizes information about branches, publishers, authors and, books. Each branch has a number that uniquely identifies the branch. In addition, it tracks the branch’s name, location, and number of employees. Each publisher has a code that uniquely identifies the publisher. In addition, it tracks the publisher’ name and city. 1) Using the information below to create the tables in the Books store in MS Access 2) Add the branch information to the BRANCH table 3) Add the publisher information to the PUBLISHER table 4) Add the author information to the AUTHOR table 5) Add the book information to the BOOK table. In the PAPERBACK column use YES or NO 6) Add the author and book information to the WROTE table 7) Add the inventory information to the INVENTORY table HOMEWORK 1.2: MICROSOFT ACCESS DATABASE - QUERIES Considering the homework 1 example it is required: 8) List the name of each publisher located in New York 9) List the name of each publisher not located in New York 10) List the book code and the book title of each book that has the type HOR or is published by the publisher with the publisher code RH 11) List the book code, book title, and price of each book with a price between $20 and $30 12) List the book code, book title, and price of each book with a price over $30 13) List the book code and book title of each book that has the type ART and a price of less than $20 14) List the book code and the book title of each book that has the type ART and a price over $15 15) List the book code and the book title of each book that is a paperback and has a price of over $10 16) List the book code and the book title of each book that has the type of TRA, PSY or CMP. 17) How many employees does the books store have? 18) For each book published by Tor Books, list the book code, book title, and price. 19) List the book code, book title, and price of each book published by Tor Books that has a book price of less than $15 20) List the number of books published every year at the existing publishers. 21) List the book code, book title, author’s name for a certain branch (name of the branch is passed as parameter) 22)List the number of books written by a certain author (name of the branch is passed as parameter) HOMEWORK 1.3: MICROSOFT ACCESS DATABASE - QUERIES Considering the homework 1 example it is required: 23) List the book title for each book that has the type SFI and is published by Thames and Hudson 24) Find the book title for each book written by author 20. Use the IN operator in your commands. 25) Find the book code and the book title foe each book whose price is less than $10 and that was published in New York 26) List the book code, book title and units for each book in branch number 3 27) List the book code, book title and units for each book in branch number 4 28) Add an attribute to INVENTORY called REORDER_NUM, make it Decimal (1,0). Give it a default value of zero. 29) For every book in INVENTORY that has ON_HAND value of less than 3, make REORDER_NUM 1 30) Add yourself to the AUTHOR table as author 26 31) Add two books to BOOK, 2222 and 3333, any title, type, price, both are paperbacks and the publisher is TA. 32) If you wanted to delete 2222 from book what would you have to do?