EDUCBA Logo

EDUCBA

MENUMENU
  • Explore
    • EDUCBA Pro
    • PRO Bundles
    • All Courses
    • All Specializations
  • Blog
  • Enterprise
  • Free Courses
  • All Courses
  • All Specializations
  • Log in
  • Sign Up
Home Data Science Data Science Tutorials SQL Tutorial Types of SQL Views
 

Types of SQL Views

Updated March 8, 2023

Types of SQL Views

 

 

Introduction of SQL Views

Views in standard query language (SQL) are more or less like virtual tables through which a user can view and manipulate data. They are the results of a pre-stored source query on one or more data table that selects and stores records in a virtual table based on some conditions and joins. Views do not form part of the database schema. However, it reflects all the changes being made in the concerned tables.

Watch our Demo Courses and Videos

Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more.

In SQL, we can have two types of views, namely system-defined views and user-defined views. Within user-defined views, the two types of views that are widely known:

  • Simple View: Simple views are views that are created on a single table. We can perform only basic SQL operations in simple views. That means, we cannot perform analytical and aggregate operations by grouping, sets, etc. in simple views. We can definitely perform insert, update, delete directly from a simple view, but for that, we must have the primary key column in the view.
  • Complex View: Complex views as the name suggest are a bit complicated compared to simple views. Complex views are created on more than one database table. We can perform analytical and aggregate operations in complex views, but unlike simple views, we cannot perform insert, delete, and update directly from a complex view.
  • In some databases like SQL server, we have some system-defined views too. They are views for routines, schemas, table_privileges, table_privileges, check_constraints, etc. They are automatically created when we create a database. Here is an image from SQL server management studio that gives us an understanding of what system views are:

Types of SQL Views-1.1

  • There are many more, but for this article, we have kept it short. Go check it out for yourself.
  • Having discussed the types of views, in brief, let us go ahead and discuss the syntax used for creating a view in SQL.

Syntax and Parameters

The basic syntax for creating a view is as follows :

CREATE VIEW view_name AS query;

The parameters used in the above-mentioned syntax are as follows :

  • view_name: Name of the view
  • query: Usually a select statement that sources data from database tables. The results of this query will be stored as a view.

The difference between simple and complex view comes in the query part of the syntax. If the query sources data from only one table and does not have any group by clauses, it will be our simple view. Otherwise, it will be known as a complex view. Going ahead, let us discuss a few examples to understand how views work in SQL and how to differentiate between a simple view and a complex view.

Examples of Types of SQL Views

To illustrate the creation of simple and complex views, we need to have a few base tables first. For this article, we will be using the following tables.

The data in the employee table looks something as follows :

SELECT * FROM employee;

Types of SQL Views-1.2

The data in our second table looks something as follows :

SELECT * FROM departments;

Types of SQL Views-1.3

Now we are all set to try a few examples based on views with the help of these tables.

Example #1

Create a view consisting of employee details for department ‘D01’.

CREATE VIEW employee_dept1_view AS
SELECT * FROM employee
WHERE department_id = 'D01';

Types of SQL Views-1.4

The query executed successfully, and the view has been created. We can see the view in the concerned database. It will look something as follows :

Types of SQL Views-1.5

In this case, we have created a simple view, for which the data is sourced from only 1 base table.

Example #2

Create a view based on the employee and department table with fields as employee_name, salary, highest_qualification, department_name and location.

CREATE VIEW employee_details AS
SELECT e.employee_name,
e.salary,
e.highest_qualification,
d.department_name,
d.location
FROM
employee as e JOIN departments as d
ON e.department_id = d.department_id;

Output-1.6

The view has been successfully created. Such views which are based on multiple tables are categorised as complex views. Here is a select query to give us a glimpse of records in the created view.

SELECT employee_name, salary, highest_qualification, department_name, location
FROM employee_details;

Output-1.7

Example #3

Create a view that contains records with maximum salary for each department.

CREATE VIEW employee_max AS
SELECT
d.department_id,
d.department_name,
MAX(e.salary)
FROM
employee as e JOIN departments as d
ON e.department_id = d.department_id
GROUP BY d.department_id,d.department_name;

Output-1.8

The view has been successfully created. Views with GROUP BY and aggregate functions are also categorised as complex views.

Let’s see what’s inside our newly created employee_max view with the help of a SELECT statement.

SELECT department_id, department_name, max
FROM employee_max;

Output-1.9

Conclusion

In this post, we have discussed the types of views in SQL. There are primarily two types of user-defined views in SQL, simple and complex views. Simple views are created on one database table, whereas complex views are created on more than one table.

Recommended Articles

We hope that this EDUCBA information on “Types of SQL Views” was beneficial to you. You can view EDUCBA’s recommended articles for more information.

  1. PostgreSQL ORDER BY Random
  2. MySQL DDL
  3. SQL Window Functions
  4. SQL Users
Primary Sidebar
Footer
Follow us!
  • EDUCBA FacebookEDUCBA TwitterEDUCBA LinkedINEDUCBA Instagram
  • EDUCBA YoutubeEDUCBA CourseraEDUCBA Udemy
APPS
EDUCBA Android AppEDUCBA iOS App
Blog
  • Blog
  • Free Tutorials
  • About us
  • Contact us
  • Log in
Courses
  • Enterprise Solutions
  • Free Courses
  • Explore Programs
  • All Courses
  • All in One Bundles
  • Sign up
Email
  • [email protected]

ISO 10004:2018 & ISO 9001:2015 Certified

© 2025 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

🚀 Limited Time Offer! - 🎁 ENROLL NOW