Answer Posted / samba shiva reddy . m
Full Outer join it will take all the records from the both the tables.
Example:
Table1 : emp
______________
empid empname
______________
1 samba
______________
2 Anju
______________
NULL Shiva
______________
5 NULL
______________
Table2 : user
______________
uid uname
______________
1 raju
______________
2 Khan
______________
3 Sripal
______________
4 Sathosh
______________
NULL Srinu
______________
9 NULL
______________
We will write the Full Outer join on both the table
Select * from emp full outer join [user] on emp.empid=[user].uid
the result will be both the tables with NULL vslues
but in the cross join it is bsed on the rows
in the cross join it will give the combination of all rows
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How global temporary tables are represented and its scope?
What command is used to rename the database?
your sql server is running out of disk space. You notice that there are several large files with ldf extensions what are these files? : Sql server administration
What is the new security features added in sql server 2014? : sql server security
How to create an inline table-valued function?
What are dml triggers and types of dml triggers?
What causes index fragmentation?
How do I find sql server instance name?
What is the sql case statement used for?
How to create function with parameter in sql server?
What is ddl and dml commands?
What is store procedure?
What is the difference between char, varchar and nvarchar?
Your sql server is running out of disk space. You notice that there are several large files with ldf extensions what are these files?
Tell me what is the order in which the sql query is executed?