Save each using the qryNN naming convention, with the actual question appended if you wish
For the queries in this task, all sorts based on text are ascending; all sorts based on numbers are descending.
Be sure to put a sort on every value that you use in a query, but pay attention to the order in which the query will sort the values.
[top]
01. Get me a list of our publishers and, oh yes, I need to know where they are located.
Show the names of all of the publishers, their states and/or their countries.
Sort the results by the country first, the state second, and then by the name of the publisher
[top]
02. We want to spread around our purchases. If I tell you a state, can you tell me what publishers we deal with in that state?
This is a question about US publishers, so use a criteria on the country field to weed out any publishers who may not have a location in a US state and a parameter criteria on the state field to select the specific state
Show the names of all of the publishers who are in a certain state.
Display only the name, not the state or the country, because the parameter will be the state.
Sort by the name of the publisher.
[top]
03. I wonder how many university-affiliated publishers we deal with. Let me see a list of all of them, sorted by where they are.
Show name, city, state, and country fields in the publishers table for those publishers who have the word university as part of their name
Sortby country first, then by state, city, and publisher name, in that order.
[top]
04. I was just asked about that guy Prinz or Prince or Prens, but I can't remember how his name is spelled? While you're at it, make the query so that we can use it each time we need to find any authors whose names start with the same letters.
Use a parameter query to show the names of all of those authors whose last names begin in the same fashion. This query can pull names that begin with any series of letters; they don't have to begin with PR.
Sort by author last name.
[top]
05. Are we buying too many copies of books? Let's start by finding out the books for which we have more than three copies. We need to see the number of copies, the name of the book, and the name of the publisher. However, we only need to see those publishers who are in the US.
Create a list of titles for which we have more than three copies in stock, but only show us those titles published by US publishers.
This is a touch more complex. You will need more than a single table for this one, and this time your criteria needs to return values that meet two different criteria
Sort by the number of copies, the name of the book, and the name of the publisher, in that order.
[top]
06. Are we spending too much money on cheap books? We need a list of the titles (just the titles) of all the books whose retail price is less than $10, but only those titles for which we possess more than 1 copy. Sort the titles by the number we have in stock, but make sure the titles are arranged alphabetically.
You need to query on a criteria that will not be displayed in the result - i.e., we don't need to see the price or the number of books
Sort by number of copies and then by title, in that order.
[top]
07. Oops, I got that wrong. I meant to say that we want to know the titles of all the books designated as cheap as well as the titles of all the books that we have more than one copy of, whether they were cheap or expensive. This time we need to see both the number and the titles, by number first and title second.
Show the names of all of those books that have a price below a certain amount OR that have the number of books in stock greater than a certain number. Show the titles and the number of books in stock.
This one is similar to query 06, but here you need to use two criteria with an OR operation. Pay attention to what needs to show in the resultant table.
Sort number, then by title, in that order.
[top]
08. My hearing is going and sometimes I can't quite distinguish the difference in the pronunciation of words that begin with B from words that begin with P. Thus, when someone asks about our books, I am not sure I understand which one they are asking for so I need a list of both possibilities. While you're at it, make it so that I can call up books that begin with either of any two letters.
Use a multi-part parameter query to do this one.
Don't forget to sort the dataset that is returned.
[top]