What is the output of below query?
select * from test1 t1
inner join test2 t2
on t1.ID = t2.ID
where t1.ID <> t2.ID;

 Posted by vishalneeraj-24503 on 1/2/2015 | Category: Sql Server Interview questions | Views: 1972 | Points: 40
Select from following answers:
  1. Matching rows will be returned.
  2. No rows will return.
  3. Will throw error.
  4. None of these.
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response