CREATE VIEW emp_dept_view AS SELECT Ename, DeptName FROM Employee, Department WHERE Employee.Eid=Department.Eid;