I have to use only to use natural join it is not working in sql server,,, i have to select EmpName,EmpDOB and EMPDOB from employee table and just DEPTID from department table..please help
SELECT DEPARTMENT.DEPTID, EMPLOYEE.EmpID, EMPLOYEE.EMPName, EMPLOYEE.EMPDOB
FROM DEPARTMENT NATURAL JOIN
EMPLOYEE ON DEPARTMENT.DEPTID = EMPLOYEE.DEPTID