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

SQL Query - May be it involve Cursors too.


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

New User


Joined: 09 Sep 2005
Posts: 53

PostPosted: Fri Mar 30, 2007 1:13 pm
Reply with quote

Hi Friends,

I have a following table say T1,

Amt. Type ( Type can have only R or E )
200 R
150 E
.........
.........

I have created another table, T2 on which there are 2 columns to hold the values from T1 based on Type field i.e if Type value = 'R' the corresponding Amt. value ( 200 ) should be inserted in to col1 in T2, similarly if Type value = 'E' its corresponding Amt. Value ( 150 ) should be inserted in to col2 in T2.

Need code to accomplish this ?

Thanx & Regards,
Prakash. K
Back to top
View user's profile Send private message
vini_srcna

Active User


Joined: 26 May 2005
Posts: 178
Location: Copenhagen, Denmark

PostPosted: Fri Mar 30, 2007 1:26 pm
Reply with quote

What a big deal in that..?

You told that the table T1.TYPE can contain only R & E.

So just a simple query should serve your purpose.

INSERT INTO T2 SELECT * FROM T1.

if you think, there is no check constraint on T1.TYPE and contain others too. Then just filter it by WHERE predicate.

INSERT INTO T2 SELECT * FROM T1 where TYPE IN ('R','E')
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 RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top