What is the difference between join and union.

Answers were Sorted based on User's Feedback



What is the difference between join and union...

Answer / infant gerald

Join is a And Statement of a where clause
Unios is an Or Statemen of matching datatype

Is This Answer Correct ?    0 Yes 4 No

What is the difference between join and union...

Answer / krish

how to fine top 3 emp(sal) from each deptno
i want the out put like this
sal deptno
100 20
200 20
300 20
150 30
250 30
350 30
so top 3 from each dept
thank u

Is This Answer Correct ?    1 Yes 5 No

What is the difference between join and union...

Answer / vishnu e s

join-is used to join two tables which have the same field
and same data type.
union-is to join two sql querrys....

Is This Answer Correct ?    3 Yes 8 No

What is the difference between join and union...

Answer / sompalli krishna

Join: joins are used to combine the columns from one or
more tables(join using one table is possible for self
join).output should B more than one column.
It is constraint based.Columns r joined based on similar
column names and datatypes also on both the tables.

union: union is used to combine the columns from one or
more tables.Output should B one column.
It is not constraint based.Any no. of columns can be
combined without using any condition.But the data types
should be same immaterial to column names.
Contact me for any queries on 09885790989

Is This Answer Correct ?    0 Yes 5 No

What is the difference between join and union...

Answer / vijay kulkarni

In Join, matching rows are joined side-by-side to make the
result table but whereas in Union rows are joined one-below
the other to make the result table.

Is This Answer Correct ?    21 Yes 33 No

What is the difference between join and union...

Answer / sat kumar

Union:- Union return the common data in the form of rows

Join:- Joins always returncommon Data in the form of Column
if oyu have some suggetion about this then plz call
me at this is my no
+91-9868591907

Is This Answer Correct ?    19 Yes 35 No

What is the difference between join and union...

Answer / venki

A join is used to combine rows from multiple tables. A join
is performed whenever two or more tables is listed in the
FROM clause of an SQL statement.


Combines the results of two SELECT statements into one
result set, and then eliminates any duplicate rows from
that result set

Is This Answer Correct ?    40 Yes 57 No

Post New Answer

More SQL PLSQL Interview Questions

What is scalar function in sql?

0 Answers  


How to Execute a Package in PL/SQL.?

0 Answers   MCN Solutions,


how many columns can be used for creating index? : Sql dba

0 Answers  


What is a left inner join?

0 Answers  


Can you have more than one trigger on a table?

0 Answers  






Can a select statement fire a trigger?

0 Answers  


Give an example of Full Outer Join?

1 Answers   IBM,


Explain the steps needed to create the scheduled job?

0 Answers  


Difference between table function and pipelined function?

0 Answers  


What is the difference between row level and statement level trigger?

0 Answers  


can we call a procedure from a function?

9 Answers   Mind Tree,


what is the boundary line in varrays?

1 Answers   HCL,


Categories