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

how to know to which table the columns belongs


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

New User


Joined: 28 Mar 2005
Posts: 6

PostPosted: Wed May 25, 2005 2:19 pm
Reply with quote

After union of two or more tables How we will come to know by seeing the resultant table which column belongs to which table
Back to top
View user's profile Send private message
vasanthanc

New User


Joined: 01 Apr 2005
Posts: 58

PostPosted: Wed May 25, 2005 2:41 pm
Reply with quote

I think u mean to ask how to find which row is from which table as column names shud be same in all the tables u use for union

by seeing result, u cant find which table the row belongs. But to do that, u have an indirect method

Select EmpNo, EmpName, "T1" as TableName from Table1
union Select EmpNo, EmpName, "T2" as TableName from Table2

by executing the above query, u will get an additional column, which denotes which table that particular row is from.
Back to top
View user's profile Send private message
paru

New User


Joined: 24 Jun 2005
Posts: 9
Location: INDIA

PostPosted: Tue Aug 30, 2005 11:02 am
Reply with quote

Hi Vasanth

a small correction to the query u posted..
"Select EmpNo, EmpName, "T1" as TableName from Table1
union Select EmpNo, EmpName, "T2" as TableName from Table2 "

I think the correct query is
"Select EmpNo, EmpName,as "T1" from Table1
union Select EmpNo, EmpName,as "T2" from Table2

This is how i think it shud be.Corrections are welcome!

Regards,
Paru
Back to top
View user's profile Send private message
View previous topic : : View next topic  
Post new topic   Reply to topic All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts count contained values of several col... DB2 4
No new posts To join 2 tables and to join 3rd tabl... DB2 8
No new posts Create a specific record/file based o... SYNCSORT 8
No new posts Extract ISPF table column headings CLIST & REXX 2
No new posts Unload and Load ISPF Table TSO/ISPF 4
Search our Forums:


Back to Top