Advertisement

10.12.2008 at 11:45PM PDT, ID: 23808711
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.8

Find cid of customers who have ordered exactly the same set of products which are ordered by a customer with cid 'c0001'.

Asked by bejhan in SQL Query Syntax, Oracle Database, PL / SQL

Tags:

I am doing an assignment for school which involves writing queries. I am done except for I stumped on one question:

Find cid of customers who have ordered exactly the same set of products which are ordered by a customer with cid 'c0001'.

I can't seem to think of anyway to determine that the sets are the same. I will post the table definitions for the assignment and what I have so far. It is due on Tuesday so a fast response would be appreciated.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
SELECT c.cid
FROM customers c, orders o, orderline ol
WHERE c.cid = o.cid AND o.oid = ol.oid AND ol.pid IN(SELECT DISTINCT ol.pid FROM customers c, orders o, orderline ol WHERE c.cid = 'c0001' AND c.cid = o.cid AND o.oid = ol.oid);
 
-- We will drop the tables in case they exist from previous runs
drop table orderline;
drop table orders;
drop table products;
drop table categories; 
drop table customers;
  
CREATE TABLE customers (
  cid           char(5),
  cname         char(15),
  phone         char(12),
  address       char(20),
  PRIMARY KEY (cid)
);
CREATE TABLE categories (
  catid         char(2),
  catname       char(12),
  PRIMARY KEY (catid)
);
CREATE TABLE products (
  pid           char(5),
  pname         char(15),
  unit          char(5),
  price         float,
  stock_qty     integer,
  catid         char(2),
  PRIMARY KEY (pid),
  FOREIGN KEY (catid) REFERENCES categories
);
CREATE TABLE orders (
  oid           char(5),
  cid           char(5),
  odate         date,
  charge_amount float,
  PRIMARY KEY (oid),
  FOREIGN KEY (cid) REFERENCES customers
);
CREATE TABLE orderline (
  lno           integer,
  oid           char(5),
  pid           char(5),
  qty           integer, 
  price         float, 
  PRIMARY KEY (oid, lno),
  FOREIGN KEY (oid) REFERENCES orders ON DELETE CASCADE,
  FOREIGN KEY (pid) REFERENCES products
);
[+][-]10.13.2008 at 12:54AM PDT, ID: 22700711

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.13.2008 at 10:12AM PDT, ID: 22704138

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.13.2008 at 12:50PM PDT, ID: 22705732

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.13.2008 at 02:43PM PDT, ID: 22706771

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.14.2008 at 02:06AM PDT, ID: 22709618

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: SQL Query Syntax, Oracle Database, PL / SQL
Tags: SQL
Sign Up Now!
Solution Provided By: sujith80
Participating Experts: 2
Solution Grade: A
 
 
[+][-]10.14.2008 at 01:10PM PDT, ID: 22715491

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.14.2008 at 01:16PM PDT, ID: 22715550

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.14.2008 at 01:16PM PDT, ID: 22715551

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628