Diff. b/w Full Outer Join And Cross Join?
Answers were Sorted based on User's Feedback
Answer / ramesh
Full Outer Join requires a condition and related column in
the table.
Cross Join requires with out condition and no related
columns in the tables.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / saurav kumar
Full outer join will give common + uncommon records from
both the table.
Suppose in TableA I have 5 records and TableB have 6
records. Both the table have 4 common records, means 4
records of TableA is common with TableB.
Then full outer join will give 4(common) + 1 (TableA)+ 2
(TableB) = 7 records.
Whereas Cross Join will give 5(TableA) * 6(TableB) = 30
records, also we can't put 'ON' condition with cross join.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / 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 |
Tell me in brief how sql server enhances scalability of the database system?
How do I repair damaged sql server mdf file database? In previous day my mdf file has got damage due to unknown reasons then I used dbcc chekcdb command but it failed, MDF file is important for me, I don’ know that how to get back mdf file data. Please anyone suggest me?
what's the information that can be stored inside a bit column? : Sql server database administration
What is the minimum recommended amount of ram for sql server 2012 enterprise?
New concepts of sql server 2005 use in your project.
Are connections to sql server encrypted?
Explain about remote stored procedure?
What is user-defined function? Explain its types i.e. Scalar and inline table value user-defined function?
What is dbcc? Give few examples.
How to get the count of distinct records. Please give me the query?
How to delete particular value in the column of a table.Is it possible or not?if possible give it as in query.
What are the High-Availability solutions in SQL Server and differentiate them briefly?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)