Please let me know if UNION ALL and Natural Join does the
same operation and are same...
Answer Posted / vikneswaran
no,union all and natural join is not same. for example tave
two tame emp and dept
emp table
empid ename salary
1 a 1000
2 b 2000
dept table
deptid deptno
1 10
2 20
if i join this two tables
(empid = deptid)
empid ename salary deptno
1 a 1000 10
2 b 2000 20
if i union a11 this two tables
empid ename salary deptno
1 a 1000 null
2 b 2000 null
1 null null 10
2 null null 20
so join and unionall is not same
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
How does pl sql work?
how to use 'mysql' to run sql statements? : Sql dba
how to calculate expressions with sql statements? : Sql dba
What is out parameter used for eventhough return statement can also be used in pl/sql?
What is sqlite format?
What is pl sql block in dbms?
How do I sort a table in sql?
What is exit statement?
Is ms sql traffic encrypted?
What is sql and its types?
When to use inner join and left join?
What is cursor explain with example?
Why function is used in sql?
Why is sql better than hql?
can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible? : Sql dba