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

Home -> Community -> Usenet -> c.d.o.misc -> Re: UPDATE question

Re: UPDATE question

From: Jonathan Gennick <gennick_at_worldnet.att.net>
Date: 1998/05/09
Message-ID: <6j0isp$192@bgtnsc01.worldnet.att.net>#1/1

On Fri, 08 May 98 17:17:10 GMT, gaverill_at_chsra.wisc.edu (Gerard M. Averill) wrote:

>My question is: why is T.B an invalid column name within the inline views but
>not in the subquery?

Because an inline view is a view not a subquery. In other words, you could not create a view like this:

	create view maxpx as
		select max(P.X) X
      	from P
           where P.X <= T.B

so you can't use it as an inline view either.

Jonathan Received on Sat May 09 1998 - 00:00:00 CDT

Original text of this message

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