Please let me know if UNION ALL and Natural Join does the
same operation and are same...
Answer Posted / vasanth
Hi All....!
Natural join is the same as an equi join on (emp.deptno =
dept.deptno).
Natural joins may cause problems if columns are added or
renamed. Also, no more than two tables can be joined using
this method. So, it is best to avoid natural joins as far
as possible.
If you will come to UNION ALL.
UNION ALL query allows you to combine the result sets of 2
or more "select" queries. It returns all rows (even if the
row exists in more than one of the "select" statements.
Each SQL statement within the UNION ALL query must have the
same number of fields in the result sets with similar data
types.
For Example :-
select field1, field2, . field_n
from tables
UNION ALL
select field1, field2, . field_n
from tables;
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
Write the command to remove all players named sachin from the players table.
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba
What are operators available in sql?
Explain sql data types?
What do you mean by field in sql?
How to rename a column in the output of sql query?
What is a parameter query?
how to select unique records from a table? : Sql dba
What does the acronym acid stand for in database management?
What is a sql*loader control file?
what is the difference between primary key and unique key? : Sql dba
What is sqlerrm?
How do you explain an index?
what are the system privileges that are required by a schema owner (user) to create a trigger on a table?
Is primary key clustered index?