What are the differences between UNION and JOINS?

Answers were Sorted based on User's Feedback



What are the differences between UNION and JOINS?..

Answer / saravakumar

A join selects columns from 2 or more tables. A union
selects rows.

Is This Answer Correct ?    7 Yes 0 No

What are the differences between UNION and JOINS?..

Answer / sree

UNION:The SQL UNION operator combines two or more SELECT
statements.

JOINS:SQL joins are used to query data from two or more
tables, based on a relationship between certain columns in
these tables.

Is This Answer Correct ?    4 Yes 0 No

What are the differences between UNION and JOINS?..

Answer / nikhila reddy

UNION:the both tables should have same structure and datatype.
the column name will taken as first table ones it wont bother abt other tables.
example:
emp table as
eid ename esal
1 a 10k
2 b 20k

dept table as
deptid deptname deptsal
11 aa 20k
12 bb 50k


select * from emp
union
select * from dept

empid empname empsal
1 a 10k
2 b 20k
11 aa 20k
12 bb 50k

now u can observe col name taking alias of first table.
no need of relation between a tables.
it will remove duplicate records.


joins:it will join only required fields from different tables.
no need of same structure for tables..
it should have relation between a tables.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

WHY CAN WE CREATE ONLY ONE CLUSTERED INDEX ON A TABLE IN SQL SERVER?

8 Answers  


Issues related in upgrading SQL Server 2000 to 2005 / 2008

0 Answers  


how to take backup bcp out for a column in table in sql server?

0 Answers  


Explain database normalization?

0 Answers  


Define the term DML, DDL and DTL?

1 Answers  






What are the differences between char and nchar in ms sql server?

0 Answers  


How do I find the sql server version?

0 Answers  


What are the purposes and advantages stored procedure?

0 Answers  


What are synonyms?

0 Answers  


Can we use where clause with group by?

0 Answers  


Relational calculus is what type of language?

0 Answers   HCL,


What are security principals used in sql server 2005?

0 Answers  


Categories