Database Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsOther TechnologiesDatabase Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
  #1  
Old August 7th, 2002, 11:52 AM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
SQL Help

Hi. I am having problems with my coding for the following project.

On problems 2 and 3 Im getting a Missing Expression error and on 4 im getting a Not a group by expression error. Can someone take a look at my code and show me how to fix this?

oh and as a word of note. For problem 2 and 3 it says the error is on line 3 and for question 4 it says its on line 2.

Thanks

---------------------------------------------------------------------------------


-- LAB #4. -- In this lab, we keep track of the books for a lending library.
--
-- Template SQL file for HW4
--

Spool c:sqlhw4.lst;
Set echo on;
set pagesize 55;
set linesize 100;

--Use count function to find out how many customers are in each state.

select USER_NAME, TO_CHAR(SYSDATE,'MM/DD/YY HH24:MI') as "Lab Run Time"
from PVF_USER;

select state, count (customer_id) as "State Customers"
from customer
group by state
order by state;


-- 2. What is the total sales amount per day?
-- sort by Order_date

column "Sales Amount" format $9,999;
column "Customer Name" format a20;
column "Product Name" format a20;
column "Order Date" format a10;

select oh.order_date,
sum(ol.quantity * p.unit_price) as "Sales Amount",
from order_hdr oh, order_line ol, product p
where oh.order_id = ol.order_id and
ol.product_id = p.product_id
group by oh.order_date
order by oh.order_date;

-- 3. How much each customer has spent?
-- Sort by Customer_name

select c.customer_name,
sum(ol.quantity * p.unit_price) as "Sales Amount",
from customer c, order_hdr oh, order_line ol, product p
where c.customer_id = oh.customer_id and
oh.order_id = ol.order_id and
ol.product_id = p.product_id
group by c.customer_name
order by c.customer_name;


-- 4. What is the total amount and total quantity of each product ordered by each customer?
-- sort by Customer_name

select c.customer_name,
p.product_id,
p.product_name,
sum(ol.quantity * p.unit_price) as "Sales Amount",
sum(ol.quantity) as "Total Quantity"
from customer c, order_hdr oh, order_line ol, product p
where c.customer_id = oh.customer_id and
oh.order_id = ol.order_id and
ol.product_id = p.product_id
group by c.customer_name
order by c.customer_name;


-- 5. What is the total amount and total quantity of each product for each day?
-- sort by Order_date, Customer_name

select oh.order_date,
c.customer_name,
p.product_id,
p.product_name,
oh.order_date,
sum(ol.quantity * p.unit_price) as "Sales Amount",
sum(ol.quantity) as "Total Quantity"
from customer c, order_hdr oh, order_line ol, product p
where c.customer_id = oh.customer_id and
oh.order_id = ol.order_id and
ol.product_id = p.product_id
group by c.customer_name, p.product_id, p.product_name,
oh.order_date
order by oh.order_date, c.customer_name;



spool off;
set echo off;


Reply With Quote
  #2  
Old August 8th, 2002, 01:44 PM
Laxersaz Laxersaz is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Neuss, NRW, Germany
Posts: 21 Laxersaz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to Laxersaz Send a message via AIM to Laxersaz
RE: SQL Help

Hi!
It's really hard to find errors without looking at the corresponding data. Could you provide some sample data sets from the actual tables here? That would help.

Reply With Quote
Reply

Viewing: Codewalkers ForumsOther TechnologiesDatabase Help > SQL Help


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek