Computer Science > Solutions Guide > Gwinnett Technical CollegeCIST 2161Hands-On Assignments lab9 (All)
Hands-On Assignments 1. Create a list that displays the title of each book and the name and phone number of the contact at the publisher’s office for reordering each book. SELECT b.title, p.conta... ct, p.phone FROM books b, publisher p WHERE b.pubid = p.pubid; SELECT b.title, p.contact, p.phone FROM books b JOIN publisher p USING (pubid); 2. Determine which orders haven’t yet shipped and the name of the customer who placed the order. Sort the results by the date on which the order was placed. SELECT c.firstname, c.lastname, o.order# FROM customers c, orders o WHERE c.customer# = o.customer# AND o.shipdate IS NULL ORDER BY o.orderdate; SELECT c.firstname, c.lastname, o.order# FROM customers c JOIN orders o USING (customer#) WHERE o.shipdate IS NULL ORDER BY o.orderdate; 3. Produce a list of all customers who live in the state of Florida and have ordered books about computers. SELECT DISTINCT c.lastname, c.customer# FROM books b, orders o, orderitems i, customers c WHERE c.customer# = o.customer# AND o.order# = i.order# AND i.isbn = b.isbn AND c.state = 'FL' AND b.category = 'COMPUTER'; SELECT DISTINCT c.lastname, customer# FROM books b JOIN orderitems USING (isbn) JOIN orders USING (order#) JOIN customers c USING (customer#) WHERE c.state = 'FL [Show More]
Last updated: 2 years ago
Preview 1 out of 4 pages
Buy this document to get the full access instantly
Instant Download Access after purchase
Buy NowInstant download
We Accept:
Can't find what you want? Try our AI powered Search
Connected school, study & course
About the document
Uploaded On
Jul 06, 2021
Number of pages
4
Written in
This document has been written for:
Uploaded
Jul 06, 2021
Downloads
0
Views
100
In Scholarfriends, a student can earn by offering help to other student. Students can help other students with materials by upploading their notes and earn money.
We're available through e-mail, Twitter, Facebook, and live chat.
FAQ
Questions? Leave a message!
Copyright © Scholarfriends · High quality services·