Question

Database, must be typed for Ms Access, Write a query to display the book number, title,...

Database, must be typed for Ms Access,

Write a query to display the book number, title, and cost for all books that cost $59.95 sorted by book number?

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Thanks for the question.

Assuming the table name is BOOK and the column names are BOOK_NUMBER, TITLE, COST respectively. The the query will be as follows

SELECT BOOK_NUMBER, TITLE, COST
FROM BOOK where cost=59.95 order by book_number;

SELECT <Column 1 Name>,<Column 2 Name>,<Column 3 Name> FROM <Table Name> WHERE <COLUMN NAME> =

<VALUE> ORDER BY <TABLE NAME>

The only condition for filtering the data is cost should be equal to 59.95 which is why we are using COST=59.95 and we need to sort them by BOOK_NUMBER so we are using ORDER BY BOOK_NUMBER

Add a comment
Know the answer?
Add Answer to:
Database, must be typed for Ms Access, Write a query to display the book number, title,...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Problem 33, chapter 7 from Database Systems 13th edition by Coronel Write a query to display...

    Problem 33, chapter 7 from Database Systems 13th edition by Coronel Write a query to display the employee number, last name, email address, title, and department name of each employee whose job title ends in the word “ASSOCIATE.” Sort the output by department name and employee title Problem 36, chapter 7 from Database Systems 13th edition by Coronel Write a query to display the number of products within each base and type combination, sorted by base and then by type...

  • Write a query to display author ID, author first, last name, and the number of subjects...

    Write a query to display author ID, author first, last name, and the number of subjects (book subject count) for authors who have published books in more than one subject area (book subject). CHECKOUT PATRON PK Pat ID FK1 Book Num FK2 Pat ID Check Out Date Check Due Date Check In Date Pat FName Pat LName Pat Type BOOK AUTHOR PK Au ID Book Title Book Year Book Cost Book Subject Au FName Au LName Au BirthYear FK1 Pat...

  • The CIS Department at Tiny College maintains the Free Access to Current Technology (FACT) library of...

    The CIS Department at Tiny College maintains the Free Access to Current Technology (FACT) library of e- books. FACT is a collection of current technology e-books for use by faculty and students. Agreements with the publishers allow patrons to electronically check out a book, which gives them exclusive access to the book online through the FACT website, but only one patron at a time can have access to a book. A book must have at least one author but can...

  • 1. Using the Sakila database, write a query that shows the first_name and last_name of actors...

    1. Using the Sakila database, write a query that shows the first_name and last_name of actors that have not appeared in a film. 2. Using the Sakila database, write a query that shows the film title and category name corresponding to the film. If the category is null, display “Unknown” rather than null. 3. Using the Sakila database, write a query that shows the number of films per rating that have special_features with commentaries. 4. Using the Sakila database, write...

  • Question 1 5 pts • Using the Sakila database, write a query that shows the first...

    Question 1 5 pts • Using the Sakila database, write a query that shows the first name and last_name of actors that have not appeared in a film. Question 2 5 pts Using the Sakila database, write a query that shows the film title and category name corresponding to the film. If the category is null,display "Unknown" rather than null. Question 3 5 pts • Using the Sakila database, write a query that shows the number of films per rating...

  • Please help me on the SQL queries, thank you so much. Write a query to display the title and publisher as well as the p...

    Please help me on the SQL queries, thank you so much. Write a query to display the title and publisher as well as the publisher contact for each book using JOIN...USING clause. Write a query to show the first and last names of customers who have ordered cooking books. Use the WHERE clause to join the tables. Write a query to show the title, cost and ISBN of each book in the books table. If the book has been ordered,...

  • Write the following queries in the WPC database and save these queries as Query 15 and...

    Write the following queries in the WPC database and save these queries as Query 15 and Query 16 respectively. Show the ProjectID, ProjectName, Department, Department Phone for all the projects run by the Finance Department. Display EmployeeNumber, FirstName, LastName for employees whose EmployeeNumber is greater than or equal to 3 but less than or equal to 9 and last name contains the phrase “on”.

  • Write an SQL query against the Chinook Database v1.4. Each query must run successfully using DB...

    Write an SQL query against the Chinook Database v1.4. Each query must run successfully using DB Browser for SQLite. Create the exact query below. Must use sub query. I saw that a similar solution for this question used IF and CONCAT functions which do not work and return errors. If it is possible to use the CASE function in place of IF that would be greatly appreciated. Also I really hate to ask but if it could be organized neatly...

  • 8. (15 marks) Write a complete C program, which uses an array of structures and two...

    8. (15 marks) Write a complete C program, which uses an array of structures and two user defined functions. The program deals with a library database. The program will ask the user to input required information about each book and store it in a structure in a user defined function called get info. The second user defined function display_info will display database information on the screen. The output should look as follows: Book Title Book ld 123456 C Programming 10...

  • Use MS Access software to build tables, as well as write, and execute queries. Submit the...

    Use MS Access software to build tables, as well as write, and execute queries. Submit the database and screenshots of all tables and queries. Step by step snapshots included. Don't want queries. Just process of creating this data step by step in Access. Create your own data. Ensure the data will test all criteria and prove all sorts worked as required. Be sure that all tables and queries have descriptive names. “Query 1” and “Step 1” are examples of poor...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT