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 are the events on which a database trigger can be based?

0 Answers  


What is the current version of postgresql?

0 Answers  


Explain table and field in sql?

0 Answers  


What is the purpose of design view?

0 Answers  


Explain how to use transactions efficiently : transact sql

0 Answers  






function can return value ,procedure also return value through out parameter then what is the difference?

3 Answers   3i Infotech,


What is the usage of when clause in trigger?

0 Answers  


Is ms sql is free?

0 Answers  


What is a field in a database?

0 Answers  


How many joins can you have in sql?

0 Answers  


What is union, minus and interact commands?

0 Answers  


Why is partition used in sql?

0 Answers  


Categories