What is Right Outer Join?

Answers were Sorted based on User's Feedback



What is Right Outer Join?..

Answer / g.ramesh

It produce Result Set Which contains matched rows and right
table unmatched rows.

Is This Answer Correct ?    6 Yes 2 No

What is Right Outer Join?..

Answer / ram

select empno,ename,sal,e.deptno,dname from emp e right outer
join dept d where e.deptno=d.deptno

in abvoe query we use emp and dept table with right outer join
which produce output all records from dept table and
matched records from emp table

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What is clustered vs nonclustered index?

0 Answers  


What is master database? : SQL Server Architecture

0 Answers  


How is table type constraint applied to a table?

0 Answers  


How would you use user_constraints table in DB?

0 Answers   Wipro,


how to write the query to select the rows are in the order of either 1,3,5,7... or 2,4,6,8,...

7 Answers   ADP, Satyam, Tech Mahindra,






What is a trigger?

4 Answers  


You are designing a database for your human resources department in the employee table, there is a field for social security number, which cannot contain null values if no value is given, you want a value of unknown to be inserted in this field what is the best approach?

0 Answers  


What types of replication are supported in sql server?

0 Answers  


Explain the creation and execution of a user-defined function in the sql server?

0 Answers  


What is a print index?

0 Answers  


What the different types of Replication and why are they used?

0 Answers  


WHAT IS TRIGGERS IN SQL? AND WHAT IS THE BENIFIT?

8 Answers  


Categories