Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: PL/SQL statement help

RE: PL/SQL statement help

From: Nelson, Allan <anelson_at_midf.com>
Date: Thu, 24 Jul 2003 10:53:06 -0500
Message-Id: <26007.339458@fatcity.com>


This is a multi-part message in MIME format.

------_=_NextPart_001_01C351FB.ABF49B37
Content-Type: text/plain;
 charset=us-ascii
Content-Transfer-Encoding: quoted-printable

quantity is neither a column name or a valid column alias. That's what your error is telling you. =20
=20

Allan

	-----Original Message-----
	From: Milton C. Craighead, Jr. [mailto:craighead_at_ameritech.net]=20
	Sent: Thursday, July 24, 2003 11:39 AM
	To: Multiple recipients of list ORACLE-L
	Subject: PL/SQL statement help

=09
=09

        I'm having no luck resolving the following PL/SQL errors for a
=66inal exam class project. We do not have access to metalink nor do we
have access to Oracle PL/SQL documentation. We are being taught from a PL/SQL text book that does not provide ora error message information or where to find them... Any and all assistance will be greatly appreciated.....=20

	=20
	1) where am I going wrong=3F=3F=3F=3F
	=20
	SQL> SELECT order#, customer#, address, city, state, zip,
	  2   orderdate, shipdate, shipstreet, shipcity, shipstate,
	  3   shipzip, item#, isbn, quantity
	  4  FROM customers NATURAL JOIN orders;
	 shipzip, item#, isbn, quantity
	                       *
	ERROR at line 3:
	ORA-00904: "QUANTITY": invalid identifier=20

=09
2) I'm trying to format a report where the output should look like the following: I'm able to format the item#, isbn, quanty, retail, and total line with out error but Im getting an error message in my veiw... =20 =20 Order# Customer# Customer Address Customer City, State, Zip =20 Order Date Ship Date Ship Street Ship City, Ship State, Ship Zip =20 ITEM# ISBN QUANTY RETAIL TOTAL LINE ITEM# ISBN QUANTY RETAIL TOTAL LINE =20 =20 SET SERVEROUTPUT ON SQL> set linesize 300 SQL> set pagesize 20 SQL> ttitle CENTER 'The Law Report' SKIP 2 SQL> btitle '(Confidential)' SKIP 2 SQL>=20 SQL> column item# heading 'ITEM#' format a10 truncate SQL> column isbn heading 'ISBN' format a15 truncate SQL> column quantity heading 'QUANTITY' format a6 truncate SQL> column retail heading 'RETAIL' format 990.00 SQL> column total line heading 'TOTAL|LINE' format 990.00 SP2-0158: unknown COLUMN option "line" SQL>=20 SQL> Drop view bookPub; =20 View dropped. =20 SQL> Create view bookPub 2 AS select count(b.title) as bookNum, b.cost, b.pubid 3 from books b natural join orderitems o 4 group by b.pubid, b.cost; =20 View created. =20 SQL>=20 SQL>=20 SQL>=20 SQL>=20 SQL> Drop view bookRev; =20 View dropped. =20 SQL> Create view bookRev 2 As select count(b.title) as bkNum, sum(b.retail - b.cost) as rev, o.customer# 3 from orderitems i natural join books b natural join orders o 4 group by o.customer#; =20 View created. =20 SQL>=20 SQL>=20 SQL>=20 SQL> Drop view orderInfo; =20 View dropped. =20 SQL> Create view orderInfo 2 As 3 Select c.customer#, o.order#, c.lastname, c.firstname, c.address, 4 o.shipdate, o.shipstreet, o.shipcity, o.shipstate, 5 o.shipzip, i.item#, i.isbn, i.quantity 6 from customers c, orders o, orderitems i Where c.customer#
=3D o.customer#(+)
7 and o.order# =3D i.order#; =20 View created. =20 SQL>=20 SQL> CLEAR BREAK breaks cleared SQL> CLEAR COLUMN columns cleared SQL>=20 SQL> SELECT order#, customer#, address, city, state, zip, 2 orderdate, shipdate, shipstreet, shipcity, shipstate, 3 shipzip, item#, isbn, quantity 4 FROM customers NATURAL JOIN orders; shipzip, item#, isbn, quantity * ERROR at line 3: ORA-00904: "QUANTITY": invalid identifier=20 =20
=09
SQL>=20 SQL> SELECT item#, isbn, quantity, retail, sum(retail*quantity) "Total Line" 2 FROM customers NATURAL JOIN orders NATURAL JOIN orderitems 3 NATURAL JOIN books 4 GROUP BY item#, isbn, quantity, retail;
=09
3) last but not least I can not figure out how to create this statement at all: =20 Deletes are not allowed, but you will be allowed to de-activate orders. You will need to add a column to the orders table to=20 maintain the status, and then only allow updates of that colum through a procedure.=20 =20 Again thanks for any and all assiatance.... =20 Regards, Milton C. Craighead, Jr. ______________________________________________________________________________
This email is intended solely for the person or entity to which it is = addressed and may contain confidential and/or privileged information. = Copying, forwarding or distributing this message by persons or entities other=  =
than the addressee is prohibited. If you have received this email in error, = please contact the sender immediately and delete the material from any = computer. This email may have been monitored for policy compliance. [021216]

------_=_NextPart_001_01C351FB.ABF49B37
Content-Type: text/html;
 charset=us-ascii
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Message</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dus-ascii">
<META content=3D"MSHTML 5.50.4923.2500" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><SPAN class=3D867235215-24072003><FONT face=3DArial color=3D#0000ff=20
size=3D2>quantity is neither a column name or a valid column alias.&nbsp; = That's=20
what your error is telling you.&nbsp; </FONT></SPAN></DIV> <DIV><SPAN class=3D867235215-24072003><FONT face=3DArial color=3D#0000ff=20 size=3D2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=3D867235215-24072003><FONT face=3DArial color=3D#0000ff=20 size=3D2>Allan</FONT></SPAN></DIV>
<BLOCKQUOTE dir=3Dltr style=3D"MARGIN-RIGHT: 0px">   <DIV></DIV>
  <DIV class=3DOutlookMessageHeader lang=3Den-us dir=3Dltr align=3Dleft><FONT=
=20

  face=3DTahoma size=3D2>-----Original Message-----<BR><B>From:</B> Milton C.=
=20

  Craighead, Jr. [mailto:craighead_at_ameritech.net] <BR><B>Sent:</B> Thursday,=
=20

  July 24, 2003 11:39 AM<BR><B>To:</B> Multiple recipients of list=20   ORACLE-L<BR><B>Subject:</B> PL/SQL statement help<BR><BR></FONT></DIV>   <DIV><FONT face=3DArial size=3D2>I'm having no luck resolving the following=  =
PL/SQL=20
  errors&nbsp;for a&nbsp;final exam&nbsp;class project.&nbsp;We do not have=20   access to metalink&nbsp;nor do we have access to Oracle PL/SQL = documentation.=20
  We are being taught from a PL/SQL text book that does not provide ora error=
=20

  message information or where to find&nbsp;them...&nbsp;Any and all = assistance=20
  will be greatly appreciated.....&nbsp;</FONT></DIV>   <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>   <DIV><FONT face=3DArial size=3D2>1) where am I going = wrong=3F=3F=3F=3F</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>   <DIV><FONT face=3DArial size=3D2>SQL&gt; SELECT order#, customer#, address,=  =
city,=20
  state, zip,<BR>&nbsp; 2&nbsp;&nbsp; orderdate, shipdate, shipstreet, = shipcity,=20
  shipstate,<BR>&nbsp; 3&nbsp;&nbsp; shipzip, item#, isbn, quantity<BR>&nbsp;=
=20

  4&nbsp; FROM customers NATURAL JOIN orders;<BR>&nbsp;shipzip, item#, isbn,=
=20

  =
quantity<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
=20

  *<BR>ERROR at line 3:<BR>ORA-00904: "QUANTITY": invalid identifier=20   <BR></FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>2) I'm trying to format a report where the=  =
output=20
  should look like the following:</FONT></DIV>   <DIV><FONT face=3DArial size=3D2>&nbsp;&nbsp;&nbsp; I'm able to format the = item#,=20
  isbn, quanty, retail, and total line with out error but Im getting an error=
=20

  message in my veiw...</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>Order#</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>Customer#</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>Customer Address</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>Customer City, State, Zip</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>Order Date</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>Ship Date</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>Ship Street</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>Ship City, Ship State, Ship =
Zip</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>   <DIV><FONT face=3DArial =
size=3D2>ITEM#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20   ISBN&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; QUANTY&nbsp;&nbsp;&nbsp;=20   &nbsp;&nbsp;&nbsp; RETAIL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TOTAL=20   LINE</FONT></DIV>
  <DIV><FONT face=3DArial=20
  =
size=3D2>ITEM#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ISBN&nbsp;&nbsp= ;&nbsp;=
=20

  &nbsp;&nbsp;&nbsp; QUANTY&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=20   RETAIL&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; TOTAL LINE</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>SET SERVEROUTPUT ON<BR>SQL&gt; set linesiz=
e=
=20

  300<BR>SQL&gt; set pagesize 20<BR>SQL&gt; ttitle CENTER 'The Law Report' = SKIP=20
  2<BR>SQL&gt; btitle '(Confidential)' SKIP 2<BR>SQL&gt; <BR>SQL&gt; column=20   item# heading 'ITEM#' format a10 truncate<BR>SQL&gt; column isbn heading=20   'ISBN' format a15 truncate<BR>SQL&gt; column quantity heading 'QUANTITY'=20   format a6 truncate<BR>SQL&gt; column retail heading 'RETAIL' format=20   990.00<BR>SQL&gt; column total line heading 'TOTAL|LINE' format=20   990.00<BR>SP2-0158: unknown COLUMN option "line"<BR>SQL&gt; <BR>SQL&gt; Dro= p=
=20

  view bookPub;</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>View dropped.</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>SQL&gt; Create view bookPub<BR>&nbsp; =
2&nbsp; AS=20
  select count(b.title) as bookNum,&nbsp; b.cost, b.pubid<BR>&nbsp; 3&nbsp; =
=66rom=20

  books b natural join orderitems o<BR>&nbsp; 4&nbsp; group by b.pubid,=20   b.cost;</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>View created.</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>SQL&gt; <BR>SQL&gt; <BR>SQL&gt; <BR>SQL&gt=
;=
=20
  <BR>SQL&gt; Drop view bookRev;</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>View dropped.</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>SQL&gt; Create view&nbsp; bookRev<BR>&nbsp=
;=
=20

  2&nbsp; As select count(b.title) as bkNum,&nbsp; sum(b.retail - b.cost) as=
=20

  rev, o.customer#<BR>&nbsp; 3&nbsp; from orderitems i natural join books b=20   natural join orders o<BR>&nbsp; 4&nbsp; group by o.customer#;</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>View created.</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>SQL&gt; <BR>SQL&gt; <BR>SQL&gt; <BR>SQL&gt=
;=
 Drop=20
  view orderInfo;</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>View dropped.</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>SQL&gt; Create view&nbsp; =
orderInfo<BR>&nbsp;=20
  2&nbsp; As<BR>&nbsp; 3&nbsp; Select&nbsp; c.customer#, o.order#, c.lastname= ,=
=20
  c.firstname, c.address,<BR>&nbsp; 4&nbsp; o.shipdate, o.shipstreet,=20
  o.shipcity, o.shipstate,<BR>&nbsp; 5&nbsp; o.shipzip, i.item#, i.isbn,=20
  i.quantity<BR>&nbsp; 6&nbsp; from customers c, orders o, orderitems i Where=

=20

  c.customer# =3D o.customer#(+)<BR>&nbsp; 7&nbsp; and o.order# =3D=20   i.order#;</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>View created.</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2>SQL&gt; <BR>SQL&gt; CLEAR BREAK<BR>breaks=

=20

  cleared<BR>SQL&gt; CLEAR COLUMN<BR>columns cleared<BR>SQL&gt; <BR>SQL&gt;=20   SELECT order#, customer#, address, city, state, zip,<BR>&nbsp; 2&nbsp;&nbsp= ;=
=20

  orderdate, shipdate, shipstreet, shipcity, shipstate,<BR>&nbsp; = 3&nbsp;&nbsp;=20
  shipzip, item#, isbn, quantity<BR>&nbsp; 4&nbsp; FROM customers NATURAL JOI= N=
=20

  orders;<BR>&nbsp;shipzip, item#, isbn,=20   =
quantity<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
=20

  *<BR>ERROR at line 3:<BR>ORA-00904: "QUANTITY": invalid identifier=20
  </FONT></DIV>
  <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
  <DIV><FONT face=3DArial size=3D2><BR>SQL&gt; <BR>SQL&gt; SELECT item#, isbn=
,=
=20

  quantity, retail, sum(retail*quantity) "Total Line"<BR>&nbsp; 2&nbsp; FROM=
=20

  customers NATURAL JOIN orders NATURAL JOIN orderitems<BR>&nbsp; = 3&nbsp;&nbsp;=20
  NATURAL JOIN books<BR>&nbsp; 4&nbsp; GROUP BY item#, isbn, quantity,=20   retail;<BR></FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>3) last but not least I can not figure out=  =
how to=20
  create this statement at all:</FONT></DIV>   <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>   <DIV><FONT face=3DArial size=3D2>Deletes are not allowed, but you will be = allowed=20
  to de-activate orders. You will need to add a column to the orders table to=
=20

  </FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>maintain the status, and then only allow = updates=20
  of that colum through a procedure. </FONT></DIV>   <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>   <DIV><FONT face=3DArial size=3D2>Again thanks for any and all=20   assiatance....</FONT></DIV>
  <DIV><FONT face=3DArial size=3D2>&nbsp;</DIV></FONT>   <DIV><FONT face=3DArial size=3D2>Regards,<BR>Milton C. Craighead,=20 Jr.</FONT></DIV></BLOCKQUOTE></BODY></HTML>
<P>__________________________________________________________________________=
____<br>
This email is intended solely for the person or entity to which it is = addressed and may contain confidential and/or privileged information. = Received on Thu Jul 24 2003 - 10:53:06 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US