Interview Preparation mode beta
Funny Facebook Status Funny Facebook Status
Enter your email address

How To Create a New View?

Nice?Vote!

1 Answer

Nice?Vote!
You can create a new view based on one or more existing tables by using the CREATE VIEW statement as shown in the following script:

CREATE VIEW employee_department AS
  SELECT e.employee_id, e.first_name, e.last_name,
    e.email, e.manager_id, d.department_name
  FROM employees e, departments d
  WHERE e.department_id = d.department_id;
View created.

SELECT first_name, last_name, department_name
  FROM employee_department WHERE manager_id = 101;
FIRST_NAME           LAST_NAME           DEPARTMENT_NAME
-------------------- ------------------- ----------------
FName1               LName1              Finance
FName2               LName2              Administration
FName3               LName3              Human Resources
FName4               LName4              Public Relations
FName5               LName5              Accounting
answered 1 year ago by siva (10,720 points)

Related questions