0% found this document useful (0 votes)
5 views6 pages

SQLviews

SQL views are virtual tables that derive their data from other tables or views and are defined using SELECT statements. The CREATE VIEW command allows users to create views that can be utilized in various SQL operations, such as SELECT, INSERT, UPDATE, and DELETE, depending on certain conditions. Views enhance security, simplify complex queries, and provide a layer of abstraction between the user and the underlying data.

Uploaded by

swatisingh5874
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views6 pages

SQLviews

SQL views are virtual tables that derive their data from other tables or views and are defined using SELECT statements. The CREATE VIEW command allows users to create views that can be utilized in various SQL operations, such as SELECT, INSERT, UPDATE, and DELETE, depending on certain conditions. Views enhance security, simplify complex queries, and provide a layer of abstraction between the user and the underlying data.

Uploaded by

swatisingh5874
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

SQL Views

Chapter 7 p. 260 -274 in


Kroenke textbook

SQL Views
 SQL view is a virtual table that is constructed from other
tables or views
 It has no data of its own, but obtains data from tables or
other views
 It only has a definition

 SELECT statements are used to define views


 A view definition may not include an ORDER BY clause
 Views can be used as regular tables in SELECT
statements

Kroenke, Database Processing 2

1
CREATE VIEW Command
 CREATE VIEW command:
CREATE VIEW view_name
AS
select_statement

 Use the view:


 In SELECT statements
 Sometimes in INSERT statements
 Sometimes in UPDATE statements
 Sometimes in DELETE statements
Kroenke, Database Processing 3

CREATE VIEW Command


 CREATE VIEW
command:
CREATE VIEW CustomerNameView
AS
SELECT CustName AS
CustomerName
FROM CUSTOMER;

 To use the view:


SELECT *
FROM CustomerNameView
ORDER BY CustomerName;

Kroenke, Database Processing 4

2
Uses for SQL Views
 Security: hide columns and rows
 Display results of computations
 Hide complicated SQL syntax
 Provide a level of isolation between actual
data and the user’s view of data
 three-tier architecture
 Assign different processing permissions to
different views on same table
Kroenke, Database Processing 5

Security: hide columns and rows


 MIDS database, Midshipmen table
 View for faculty – all mids with IT major
 View for students – all mids, no grades

 Midshipmen (Alpha, Name, DateOfBirth, GPA,


Major)
 Exercise: Write the SQL to create the views
 SELECT, INSERT, UPDATE, DELETE?

Kroenke, Database Processing 6

3
Display results of computations
 Faculty (EmpID, LName, FName, Department,
AreaCode, LocalPhone)
 Create a view to display 2 columns:
 Name = Fname LName
 Phone = (AreaCode) LocalPhone
 SELECT, INSERT, UPDATE, DELETE?

Kroenke, Database Processing 7

Hide complicated SQL syntax


 Mid(Alpha, LName, FName, Class, Age)
 Course(CourseID, Description, Textbook)
 Enroll(Alpha, CourseID, Semester, Grade)

 Create a view to display the student alpha,


name, CourseID and description of courses they
are/were enrolled
 SELECT, INSERT, UPDATE, DELETE?

Kroenke, Database Processing 8

4
Provide a level of isolation between
actual data and application
 CREATE VIEW CustomerV AS
SELECT *
FROM Customers
 Applications use CustomerV
 Can change the underlying table without
changing the application
ALTER VIEW CustomerV AS
SELECT *
FROM New_Customers
Kroenke, Database Processing 9

Updating Views
 CREATE VIEW CustomerV AS
SELECT *
FROM Customers
SELECT, INSERT, DELETE, UPDATE?

 CREATE VIEW FacultyPhone AS


SELECT FName + ‘ ’ + LName AS Name,
‘(’ + AreaCode + ‘)’ + LocalPhone AS Phone
FROM Faculty
Works?
UPDATE FacultyPhone
SET Phone = ‘(410)-266-7788’
WHERE Name=‘Steven Benett’

Kroenke, Database Processing 10

5
Updateable Views
 Views based on a single table
 No computed columns
 All non-null columns present in view

 Views based on a single table, primary key in


view, some non-null columns missing from view
 Updates for non-computed columns ok
 Deletes ok
 Inserts not ok

Kroenke, Database Processing 11

Summary – SQL Views


CREATE VIEW view_name
AS
select_statement

 Virtual table
 It only has a definition
 Data is computed at run-time from base tables
 All views can be used in SELECT
 Some views can be used in INSERT, DELETE,
UPDATE

Kroenke, Database Processing 12

You might also like