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

Query to display columns which is not existing in that table


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

New User


Joined: 25 May 2005
Posts: 4
Location: chennai,india

PostPosted: Wed May 25, 2005 4:30 pm
Reply with quote

hi,
My query goes like this,
I have a table say payroll_table, in that the queries i can tell are emp_id, sal_emp, Loc_emp.

now my query is i gave 4 inputs like emp_id's 100,200,998,999.
now i want to display the emp_id's which is not existing in that table with respect to what i given as input.

plz help me i struck up here.
kalinga
Back to top
View user's profile Send private message
vasanthanc

New User


Joined: 01 Apr 2005
Posts: 58

PostPosted: Wed May 25, 2005 4:55 pm
Reply with quote

To display emp_id s which are not in the table, you need to have a master table which has all the emp_ids, then you can use minus query to get the result.

select emp_id from emp_mas MINUS Select emp_id from payroll_table
Back to top
View user's profile Send private message
parikshit123

Active User


Joined: 01 Jul 2005
Posts: 269
Location: India

PostPosted: Wed May 24, 2006 4:06 pm
Reply with quote

well,

select * from payroll_table
where emp_id not in (100,200,998,999) ;

Please let me know if this query fails icon_smile.gif

Thanks,
Parikshit.
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 Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts RC query -Time column CA Products 3
No new posts Remote Unload of CLOB Columns DB2 6
No new posts Multiple table unload using INZUTILB DB2 2
Search our Forums:

Back to Top