If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Delete with multiple Joins

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-05-11, 15:37
cterry cterry is offline
Registered User
 
Join Date: Oct 2011
Location: Frisco
Posts: 8
Delete with multiple Joins

Hello -

I'm new to this website and also somewhat new to utilizing SQL DB2. I am stuck in a situation where i need to use SQL to delete selected rows out of one table by meeting criteria from other tables. This is what i have written so far:

delete from
jhcterry1.atpantrn
where
exists

(select
b.athash
from
jhcterry1.atcardupd a join jhcterry1.atcard b
on a.athash = b.athash join atmhsts518.atpantrn c
on
b.athash = c.atxhash
where
a.atcdst <> 'O' and b.atdtis = 093011)

This query is supposed to delete ONLY records from atpantrn if a.atcdst <> 'O' and b.atdtis = 093011, but for some reason when i run it, it is deleting every record inside the file. What am I doing wrong?? Please help if you can.
Reply With Quote
  #2 (permalink)  
Old 10-05-11, 15:44
tonkuma tonkuma is offline
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,193
There is no relation between tables in where clause and the target table of delete(i.e. jhcterry1.atpantrn).
So, all rows in jhcterry1.atpantrn would be deleted if exists a row satisfying where condition,
or no row would be deleted if not exists a row satisfying where condition.
Reply With Quote
  #3 (permalink)  
Old 10-05-11, 15:50
tonkuma tonkuma is offline
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,193
I couldn't see the name(or alias) of the target table(i.e. jhcterry1.atpantrn) in exists subquery.

target table:
jhcterry1.atpantrn

tables in exists subquery:
jhcterry1.atcardupd --- same schema name, different table name.
jhcterry1.atcard --- same schema name, different table name.
atmhsts518.atpantrn --- same table name, different schema name.

Last edited by tonkuma; 10-05-11 at 15:58. Reason: Add concrete example.
Reply With Quote
  #4 (permalink)  
Old 10-05-11, 15:55
cterry cterry is offline
Registered User
 
Join Date: Oct 2011
Location: Frisco
Posts: 8
but it is deleting rows out of jhcterry1.atpantrn even when the where condition isn't true. The entire file is being deleted. So jhcterry1.atpantrn needs to be in the sub select? how so?? and where?? Thanks
Reply With Quote
  #5 (permalink)  
Old 10-05-11, 16:15
tonkuma tonkuma is offline
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,193
Quote:
but it is deleting rows ... even when the where condition isn't true.
I want to repeat this
Quote:
There is no relation between tables in where clause and the target table of delete(i.e. jhcterry1.atpantrn).
So, all rows in jhcterry1.atpantrn would be deleted if exists a row satisfying where condition,
or no row would be deleted if not exists a row satisfying where condition.
where a row has no relation with the target table.
It may or may not exist independent from the status of target.

Add a correlation name to the target table, like...
delete from
jhcterry1.atpantrn AS a
where
...

then reference the correlation name(i.e. a) in where clause.

Last edited by tonkuma; 10-05-11 at 16:19.
Reply With Quote
  #6 (permalink)  
Old 10-05-11, 16:48
cterry cterry is offline
Registered User
 
Join Date: Oct 2011
Location: Frisco
Posts: 8
Ok i'm with you now on understanding that if even one condition of the where clause is met the entire table is whipped out, but i'm stil not sure "syntax" wise how to incorporate the correlation name. Should I say from: a then join to atcardupd, atcard, and atmhsts518.atpantrn??

delete from
jhcterry1.atpantrn as a
where
exists
(select

from
jhcterry1.atcardupd a join jhcterry1.atcard b
on a.athash = b.athash join atmhsts518.atpantrn c
on
b.athash = c.atxhash
where
a.atcdst <> 'O' and b.atdtis = 093011)
Reply With Quote
  #7 (permalink)  
Old 10-05-11, 16:55
tonkuma tonkuma is offline
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,193
You are using a correlation name "a" for jhcterry1.atcardupd in where clause.
So, use another correlation name for the target table, like...
delete from
jhcterry1.atpantrn as t
where
...

then add conditions for t.<column name1>(and t.<column name2> and so on, if neccesary) in where clause.
Reply With Quote
  #8 (permalink)  
Old 10-05-11, 17:11
cterry cterry is offline
Registered User
 
Join Date: Oct 2011
Location: Frisco
Posts: 8
lets say i use z for my correlation table. I still don't understand how i incorporate that into the where...what am i comparision "z" to in the where clause? what am i wanting to compare in the other tables against the delete table? z.(column name1 = ??) exists?

delete from
jhcterry1.atpantrn as z
where
exists
(select

from
jhcterry1.atcardupd a join jhcterry1.atcard b
on a.athash = b.athash join atmhsts518.atpantrn c
on
b.athash = c.atxhash
where
a.atcdst <> 'O' and b.atdtis = 093011)
Reply With Quote
  #9 (permalink)  
Old 10-05-11, 17:20
tonkuma tonkuma is offline
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,193
<column name1>, <column name2>, so on are column names of table jhcterry1.atpantrn.

If you still don't understand, ask to(or wait answer from) another people.
Reply With Quote
  #10 (permalink)  
Old 10-05-11, 17:24
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
Quote:
Originally Posted by cterry View Post
what am i comparision "z" to in the where clause? what am i wanting to compare in the other tables against the delete table? z.(column name1 = ??) exists?
This will need to identify the rows that you wish to delete, obviously, since you don't want to delete all of them.
Reply With Quote
  #11 (permalink)  
Old 10-05-11, 18:02
cterry cterry is offline
Registered User
 
Join Date: Oct 2011
Location: Frisco
Posts: 8
Do you have any examples of something similar i could reference? I'm still not clear as to how to reference the correspondence table in the where clause. Thanks
Reply With Quote
  #12 (permalink)  
Old 10-05-11, 18:28
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
Explain in a human language (preferably English) how you would identify the rows to be deleted. It's easy from there.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On