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

Home -> Community -> Usenet -> c.d.o.tools -> Re: Query with keys and maybe a cursor !

Re: Query with keys and maybe a cursor !

From: Mark D Powell <markp7832_at_my-deja.com>
Date: Thu, 14 Dec 2000 15:11:30 GMT
Message-ID: <91anur$r5j$1@nnrp1.deja.com>

In article <Pine.SOL.4.10.10012141535240.18170- 100000_at_kairos.algonet.se>,
  Jarmo Harju <jamppi_at_algonet.se> wrote:
> Hi !!
>
> i have 2 tabels
> the first one with lots of product
> and the next one with a load of descriptions of the products
> and the only way to receive the descriptions is by comming up with a
> key combined of 2 post in the products tabel.
>
> this is the query im using when taking out single posts
>
> SELECT description FROM products WHERE
> Productid ='something' and producttype ='something'
> and YearModelIn =< '1191 and ModelOutYear >= '1998';
>
> my question is ! how do i get this one to go thru all records
> in the database, i wnt all the desciptions for every product
> slammed to gether to a new tabell ??
> i guess i need to create som kind of Cursor and loop thru all the
 post ?
>
> but how do i do it ??
>
> /JArmo
>

I am a little bit confused by the wording of your post but what I think you want is to perform a join. Whenever you need data from more than one table in one result set you write a query which joins the tables together using columns from each table that hold common values. In the absence of your table descriptions here is a generalized example:

select A.product_id, A.col2, B.description from product A

       ,descriptsion B
where A.product_id = B.product_id ;

Anyway, I hope this is one some help to you.

--
Mark D. Powell  -- The only advice that counts is the advice that
 you follow so follow your own advice --


Sent via Deja.com
http://www.deja.com/
Received on Thu Dec 14 2000 - 09:11:30 CST

Original text of this message

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