IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Delete after comparing b/w two tables


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
chan2004

New User


Joined: 28 Mar 2007
Posts: 16
Location: India

PostPosted: Mon May 05, 2008 12:34 pm
Reply with quote

Hi,

I want to delete all records from a table A after comparing it with another table,B.
Both tables have same structure.
They have a column called 'name'.
if a row is there that contains a value of 'john' in name field of table A and there is no such value in table B, i need to delete it from table A
how to delete all such rows with one sql command?
will this sql work

DELETE FROM tableA
WHERE
ID = :id
AND
NAME not in
(SELECT NAME FROM tableB)
;

will this delete all rows?
Back to top
View user's profile Send private message
guptae

Moderator


Joined: 14 Oct 2005
Posts: 1208
Location: Bangalore,India

PostPosted: Mon May 05, 2008 12:43 pm
Reply with quote

Hello Chan,

I have just viewing ur query but unable to understand why u have used ID Col.

Quote:
DELETE FROM tableA
WHERE
Code:
ID = :id

AND
NAME not in
(SELECT NAME FROM tableB)
;


I think below query is sufficent

Code:
DELETE FROM tableA
WHERE
NAME not in
(SELECT NAME FROM tableB)
;
Back to top
View user's profile Send private message
chan2004

New User


Joined: 28 Mar 2007
Posts: 16
Location: India

PostPosted: Mon May 05, 2008 1:21 pm
Reply with quote

[quote="guptae"]Hello Chan,

I have just viewing ur query but unable to understand why u have used ID Col.

Quote:
DELETE FROM tableA
WHERE
Code:
ID = :id

AND
NAME not in
(SELECT NAME FROM tableB)
;


I think below query is sufficent

thanks ekta for confirming the query
the id is just another condition that i need to check before deleting icon_smile.gif
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts DELETE SPUFI DB2 1
No new posts DSNTIAUL driven delete IBM Tools 0
No new posts How to delete a user's alias from the... JCL & VSAM 11
No new posts Need to fetch data from so many DB2 t... DB2 9
No new posts Delete file row if blanks in the firs... DFSORT/ICETOOL 5
Search our Forums:

Back to Top