What is the joins and how many types of Joins in sql server
a diffrentiate ever one give a suaitable query

Answers were Sorted based on User's Feedback



What is the joins and how many types of Joins in sql server a diffrentiate ever one give a suaitab..

Answer / kamal

/* INNER JOIN -- Matched Rows only from Tables */
SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

INNER JOIN ITWP_Users U ON U.UserId = NR.UserId

/* OUTER JOIN -- Matched Rows only from Tables
RIGHT OUTER JOIN -all the rows from Right table and matched
rows from Left Table.

LEFT OUTER JOIN - all the rows from Left table and matched
rows from Right Table.

FULL OUTER JOIN - all the rows from Left table and from
Right Table.
*/
SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

RIGHT OUTER JOIN ITWP_Users U ON U.UserId = NR.UserId

SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

LEFT OUTER JOIN ITWP_Users U ON U.UserId = NR.UserId

SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

FULL OUTER JOIN ITWP_Users U ON U.UserId = NR.UserId

/* A Join without having any condition is known
as Cross Join, in cross join every row in first table is
joins with every row in second table.
*/
SELECT NR.RequestId, U.UserId FROM ITWP_NewRequest NR

CROSS JOIN ITWP_Users U

Is This Answer Correct ?    4 Yes 0 No

What is the joins and how many types of Joins in sql server a diffrentiate ever one give a suaitab..

Answer / veeresh kethari

1.Inner join:All the matched records from the both tables.
2.Left outer join: All the matched records from the both
tables and unmatched records from the left table.
3.Right outer join:All the matched records from the both
tables and unmatched records from the right table.
4.Self join:Joining the table itself.
5.Cross join:Cross join will give u the Cartesian product
from the 2 tables,it won't allow 'where' clause.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More SQL Server Interview Questions

What is the command used to get the version of sql server?

1 Answers  


What is the meaning of sql server?

0 Answers  


How to enable/disable indexes?

0 Answers  


What do you know about normalization and de- normalization?

0 Answers  


What do you understand by a stored procedure?

0 Answers  






Why do we use non clustered index?

0 Answers  


What do you mean by table and field in sql?

0 Answers  


What is schemabinding a view?

0 Answers  


how can ur insert the emp table

3 Answers   Wipro,


Do you know what is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure?

0 Answers  


What is a trace frag? Where do we use it?

0 Answers  


How can you control the amount of free space in your index pages?

0 Answers  


Categories