User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Oracle section within the Web Development category of DaniWeb, a massive community of 397,833 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,518 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Oracle advertiser:
Views: 996 | Replies: 0
Reply
Join Date: Feb 2006
Posts: 43
Reputation: butterflyTee is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 0
butterflyTee butterflyTee is offline Offline
Light Poster

Help Is this right...frustrated..please help..due in 10hrs

  #1  
Sep 23rd, 2006
USING:ORACLE 9i

For each of the following tasks, determine (a) the SQL statement needed to perform the stated task using the traditional approach and (b) the SQL statement needed to perform the stated task the JOIN keyword.

A list that displays the title of each book & the name and phone number of the person at the publisher's office whom you would need to contact to record each book.

SELECT title, name, customer
FROM books JOIN publisher
WHERE books.pubid = publisher.pubid
AND
c.books = record

Determine which orders have not yet shipped & the name of the customer that placed each order. Sort results by dates on the orders was placed.

SELECT lastname, firstname, order#
FROM customers c, orders, o
WHERE c.customer# = o.customer#(+)
ORDER BY c.customer#;

List the customer number & names of all individuals have purchased books in the Fitness Category.

SELECT title, firstname, lastname
FROM customers, orders, orderitems, books
WHERE customers.customer#=orders.customer#
AND orders.order#=orderitems.order#
AND orderitems.isbn=books.isbn
ORDER BY title = (‘Fitness’)

Determine book Jake Lucas has purchased.

SELECT lastname, firstname, order#
FROM customers c OUTER JOIN orders o
ON c.customer# = o.customers#
ORDER BY c.customers# = (‘Jake Lucas’)

Determine profit of each book sold to Jake Lucas. Sort results by date of order. If more than 1 book was ordered, have results sorted by profit amount in descending order.
SELECT lastname, firstname, order#
FROM customers, orders, orderitems, books
WHERE "Profit"
ORDER BY "Profit" desc;


Which book was written by an author with the last name Adams?

SELECT title, authorid
FROM books, bookauthor
WHERE author ('ADAMS')


What gift will a customer who orders the book Shortest Poems receive?

SELECT title, customer, gift
FROM books, promotion ('Shortest Poem')
ON retail BETWEEN minretail AND maxretail


Identify the author(s) of books ordered by Becca Nelson

SELECT lastname, firstname, title, authorid
FROM books, bookauthor
WHERE authors
ORDER BY ('Becca Nelson')


Display list of all books in BOOKS table. If a book has been ordered by a customer, also list the corresponding order number(s) & state which the customer resides.

SELECT lastname, firstname, state, books, order#
FROM state s, customers c, orders o
WHERE c. customer# AND s. customer# = o. customer#

Produce a list of all customers live in the state of Florida & ordered books about computers.

SELECT lastname, firstname, state, books, order#
FROM state s, customers c, orders o ('Florida')
WHERE c. customer# AND s. customer# = o. customer#
ORDER BY ('Computers')


:mad:
AddThis Social Bookmark Button
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

DaniWeb Oracle Marketplace
Thread Tools Display Modes

Similar Threads
Other Threads in the Oracle Forum

All times are GMT -4. The time now is 7:25 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC