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:
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
  #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: 24
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!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five &quot;checkpoints&quot; for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

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





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway