RE: What is the condition to be follwed for the natura...
While performing Natural Join please ensure that the name of the common column of both the tables are identical and their data types are also the same.
RE: What is the condition to be follwed for the natural join syntax to be correct??
It implicitly construct the join condition on the 2 tables taking all the column with same name into consideration.Natural join is also called blind join.
select employee_id last_name department_name from employees natural join departments;