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

Home -> Community -> Usenet -> c.d.o.server -> Re: Nested SQL query involving multiple tables!

Re: Nested SQL query involving multiple tables!

From: <qazmlp1209_at_rediffmail.com>
Date: 24 Jan 2007 01:44:34 -0800
Message-ID: <1169631874.023681.125770@v45g2000cwv.googlegroups.com>


On Jan 23, 9:07 pm, "cc" <chris.colclo..._at_nospam.jhuapl.edu> wrote:
>> For the above sample records, only the following record
>> 121 15 Val1
>> should become
>> 121 15 null
>
> select col_a_1, col_b_2, null
> from
> (
> select col_a_1, col_b_2, col_C_2, count(col_a_1) over (partition by col_a_1
> order by col_a_1) as data_count
> from tab1
> join tab2 on (col_a_1 = col_a_2)
> where col_b_1 = 'true'
> )
> where data_count = 1

This shows the row status without actually performing the update. I just thought of using something similar to "insert into tab2 values", but it does not seem to help.
How exactly I should adapt this query to update the Tab2? Also, for the matched records, the col_b_1 value should be changed to 'false' from 'true', in the Tab1.

Can all these be done in a single SQL query? Received on Wed Jan 24 2007 - 03:44:34 CST

Original text of this message

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