Click here to Skip to main content
15,921,371 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
// I want to join the below two query's into outer-join is it possible

1]select Posting_Id,Login_id,job_position +' in ' + company_name as JobAlert,Last_Date_For_Apply,Job_Category from job_posting_details where status='Active'
2]select event_id,Login_id,event_name,event_type +' in '+ event_detail as SiteAlert,event_place,event_date where status='Active'
Posted

 
Share this answer
 
Comments
ntitish 10-Jan-13 2:07am    
sir i am not getting site the what you sended.....can u see my code above, is it possible.......to outer-join.
ntitish 10-Jan-13 2:09am    
bec i want to display this outer join table in gridview....
check bellow:
SQL
SELECT column_name(s)
FROM table_name1
LEFT outer JOIN table_name2
ON table_name1.column_name=table_name2.column_name
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900