SQL Jan. 2012Yangjun Chen ACS-39021 Outline: SQL Chapter 8 – 3rd ed. (Chap. 8 – 4 th, 5 th ed.; Chap. 4, 5, 6 th ed.) DDL - creating schemas - modifying.

Slides:



Advertisements
Similar presentations
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification.
Advertisements

SQL DESIGN AND IMPLEMENTATION CONTENT SOURCES: ELAMSARI AND NAVATHE, FUNDAMENTALS OF DATABASE MANAGEMENT SYSTEMSELAMSARI AND NAVATHE, FUNDAMENTALS OF.
OUTLINE OF THE LECTURE PART I GOAL: Understand the Data Definition Statements in Fig 4.1 Step1: Columns of the Tables and Data types. Step2: Single column.
Database technology Lecture 2: Relational databases and SQL
Data Definition Languages Atif Farid Mohammad UNCC.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 8- 1.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification.
1 CSE 480: Database Systems Lecture 10: SQL - DML Reference: Read Chapter 4 of the textbook.
Exploring Microsoft Access 2003 Chapter 4 Proficiency: Relational Databases, External Data, Charts, Pivot, and the Switchboard.
SQL Sept. 2014Yangjun Chen ACS Outline: SQL DDL - creating schemas - modifying schemas DML - select-from-where clause - group by, having, order by.
CS 104 Introduction to Computer Science and Graphics Problems Introduction to Database (2) Basic SQL 12/05/2008 Yang Song.
SQL Winter 2006Ron McFadyen Outline: SQL DDL - creating schemas - modifying schemas DML - select-from-where clause - group by, having, order by.
Database Systems More SQL Database Design -- More SQL1.
Database: Review Sept. 2009Yangjun Chen ACS Database Introduction system architecture, Basic concepts, ER-model, Data modeling, B+-tree Hashing Relational.
More SQL: Complex Queries, Triggers, Views, and Schema Modification 1.
SQL The relational DB Standard CS-450 Dr. Ali Obaidi.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 8- 1 CREATE/DROP/ALTER TABLE Data types : char, varchar, decimal, date CREATE TABLE DEPARTMENT.
Riyadh Philanthropic Society For Science Prince Sultan College For Woman Dept. of Computer & Information Sciences CS 340 Introduction to Database Systems.
CSE314 Database Systems More SQL: Complex Queries, Triggers, Views, and Schema Modification Doç. Dr. Mehmet Göktürk src: Elmasri & Navanthe 6E Pearson.
Chapter 8 Part 1 SQL-99 Schema Definition, Constraints, Queries, and Views.
1 CS 430 Database Theory Winter 2005 Lecture 12: SQL DML - SELECT.
SQL Chapters 4, 5 (ed. 7 Chaps. 6,7). SQL or SEQUEL (Structured English Query Language) Based on relational algebra First called ‘Square’ Developed in.
SQL: Schema Definition, Constraints, & Queries and Views.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 Lecture # 11 July 12,2012 More SQL: Complex Queries, Triggers,
Relational Algebra - Chapter (7th ed )
Onsdag The concepts in a relation data model SQL DDL DML.
 Employee (fname, minit, lname, ssn, bdate, address, sex, salary, superssn, dno)  Department (dname, dnumber, mgrssn, mgrstartdate) 
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification.
Announcements Written Homework 1 due Friday –If you have fourth edition make sure you do the right problems Program 3 out today, due next Friday Nov 10.
SQL Basics. What is SQL? SQL stands for Structured Query Language. SQL lets you access and manipulate databases.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 7 Introduction to Structured Query Language (SQL)
IS 230Lecture 6Slide 1 Lecture 7 Advanced SQL Introduction to Database Systems IS 230 This is the instructor’s notes and student has to read the textbook.
CSCI DBMS Environment1 The Database System Environment Dr. Awad Khalil Computer Science Department AUC.
Chapter 3 MORE SQL Copyright © 2004 Pearson Education, Inc.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification.
莊裕澤資料庫基本概念 1 Yuh-Jzer Joung 莊 裕 澤 Dept. of Information Management National Taiwan University February, 2002 資料庫管理與資訊科技.
NOEA/IT - FEN: Databases/SQL1 SQL – part 1 SQL: DDL and DML.
DatabaseDatabase cs453 Lab5 1 Ins.Ebtesam AL-Etowi.
SQL Chapter 8. SQL or SEQUEL - (Structured English Query Language) Based on relational algebra Developed in 1970's released in early 1980's Standardized.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification.
Chapter 8 Part 2 SQL-99 Schema Definition, Constraints, Queries, and Views.
Prince Sultan University Dept. of Computer & Information Sciences CS 340 Introduction to Database Systems.
DATA AND SCHEMA MODIFICATIONS CHAPTERS 4,5 (6/E) CHAPTER 8 (5/E) 1.
Introduction to Database Systems
FEN Introduction to the database field:  SQL: Structured Query Language Seminar: Introduction to relational databases.
Copyright © 2016 Ramez Elmasri and Shamkant B. Navathe CHAPTER 7 More SQL: Complex Queries, Triggers, Views, and Schema Modification Slide 7- 1.
Constraints and Views Chap. 3-5 continued (7 th ed. 5-7)
1 COMP 1100 Basic SQL David J. Stucki. Outline SQL Overview Retrievals Schema creation Table creation Constraints Inserts Updates 2.
SQL- Updates, Assertions and Views. Data Definition, Constraints, and Schema Changes Used to CREATE, DROP, and ALTER the descriptions of the tables (relations)
1 Chapter (8) SQL The Relational Database Standard Objectives Presenting the main features of SQL SQL is the Structured Query Language SQL commands SQL.
More SQL: Complex Queries, Triggers, Views, and Schema Modification
The SQL Database Grammar
SQL: SchemaDefinition, Constraints, and Queries and Views
Chapter 4 Basic SQL.
6/22/2018.
CS580 Advanced Database Topics
Outline: SQL DDL - creating schemas - modifying schemas DML
More SQL: Complex Queries, Triggers, Views, and Schema Modification
376a. Database Design Dept. of Computer Science Vassar College
11/9/2018.
Outline: Relational Data Model
More SQL: Complex Queries, Triggers, Views, and Schema Modification
Company Requirements.
CS4222 Principles of Database System
More SQL: Complex Queries, Triggers, Views, and Schema Modification
Structured Query Language (3)
SQL-99: Schema Definition, Constraints, and Queries and Views
ISC321 Database Systems I Chapter 4: SQL: Data definition, Constraints, and Basic Queries and Updates Fall 2015 Dr. Abdullah Almutairi.
Presentation transcript:

SQL Jan. 2012Yangjun Chen ACS Outline: SQL Chapter 8 – 3rd ed. (Chap. 8 – 4 th, 5 th ed.; Chap. 4, 5, 6 th ed.) DDL - creating schemas - modifying schemas DML - select-from-where clause - group by, having, order by - update - view

SQL Jan. 2012Yangjun Chen ACS Structured Query Language declarative or non-procedural DDL for data definition DML for query, update, view facility for security, integrity constraints, transactions, embedding into other 3GLs such as Cobol, C, … SQL89, SQL92, SQL2000? Also referred to as SQL2

SQL Jan. 2012Yangjun Chen ACS DDL - creating schemas Create schema schemaname authorization user; Create table tablename … attributes, data types constraints: primary keys foreign keys on delete set null|cascade|set default on update set null|cascade|set default on insert set null|cascade|set default uniqueness for secondary keys Create domain domainname …

SQL Jan. 2012Yangjun Chen ACS DDL - Examples: Create schema: Create schema COMPANY authorization JSMITH; Create table: Create table EMPLOYEE (FNAMEVARCHAR(15)NOT NULL, MINITCHAR, LNAMEVARCHAR(15)NOT NULL, SSNCHAR(9)NOT NULL, BDATEDATE, ADDRESSVARCHAR(30), SEXCHAR, SALARYDECIMAL(10, 2), SUPERSSNCHAR(9), DNOINTNOT NULL, PRIMARY KEY(SSN), FOREIGN KEY(SUPERSSN) REFERENCES EMPLOYEE(SSN), FOREIGN KEY(DNO) REFERENCES DEPARTMENT(DNUMBER));

SQL Jan. 2012Yangjun Chen ACS DDL - Examples: Specifying constraints: Create table EMPLOYEE (…, DNOINTNOT NULLDEFAULT 1, CONSTRAINT EMPPK PRIMARY KEY(SSN), CONSTRAINT EMPSUPERFK FOREIGN KEY(SUPERSSN) REFERENCES EMPLOYEE(SSN) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT EMPDEPTFK FOREIGN KEY(DNO) REFERENCES DEPARTMENT(DNUMBER) ON DELETE SET DEFAULT ON UPDATE CASCADE); Create domain: CREATE DOMAIN SSN_TYPE AS CHAR(9);

SQL Jan. 2012Yangjun Chen ACS set null or cascade: strategies to maintain data consistency Employee delete ssn supervisor    null  Employee delete ssn supervisor    null  delete not reasonable cascade

SQL Jan. 2012Yangjun Chen ACS set null or cascade: strategies to maintain data consistency Employee set null ssn supervisor   null  null  Employee delete ssn supervisor    null  delete reasonable

SQL Jan. 2012Yangjun Chen ACS set default: strategy to maintain data consistency Department DNUMBER …   …   Employee ssn DNO     …  delete change this value to the default value 1.

SQL Jan. 2012Yangjun Chen ACS DDL - modifying schemas drop schema schemaname cascade|restrict drop table tablename cascade|restrict alter table tablename add|drop attributename cascade|restrict drop constraint...

SQL Jan. 2012Yangjun Chen ACS DDL - Examples: drop schema DROP SCHEMA CAMPANY CASCADE; DROP SCHEMA CAMPANY RESTRICT; drop table DROP TABLE EMPLOYEE CASCADE; DROP TABLE EMPLOYEE RESTRICT; alter table ALTER TABLE COMPANY.EMPLOYEE ADD JOB VARCHAR(12); ALTER TABLE COMPANY.EMPLOYEE DROP ADDRESS CASCADE;

SQL Jan. 2012Yangjun Chen ACS DDL - Examples: alter table (continue) ALTER TABLE COMPANY.DEPARTMENT ALTER MGRSSN DROP DEFAULT; ALTER TABLE COMPANY.DEPARTMENT ALTER MGRSSN SET DEFAULT “ ”; drop constraints ALTER TABLE COMPANY.EMPLOYEE DROP CONSTRAINT EMPSUPERFK CASCADE; ALTER TABLE COMPANY.EMPLOYEE ADD CONSTRAINT (EMPSUPERFK FOREIGN KEY(SUPERSSN) REFERENCE EMPLOYEE(SSN));

SQL Jan. 2012Yangjun Chen ACS DML - Queries (the Select statement) select attribute list from table list where condition group by expression having expression order by expression ; Select fname, salary from employee where salary > 30000;  fname, salary (  salary>30000 ( Employee))

SQL Jan. 2012Yangjun Chen ACS Select salary from employee;Salary Select fname, salary from employee where salary > 30000; FnameSalary Franklin40000 Jennifer43000 Ramesh38000 James55000 Duplicates are possible! See Fig. 7.6 for the relation employee.

SQL Jan. 2012Yangjun Chen ACS Select distinct salary from employee;Salary Select average(salary) from employee;Average(Salary) Select average(distinct salary) from employee; Average(distinct Salary) Select Distinct suppresses duplicates; Select All does not - select all is the default

SQL Jan. 2012Yangjun Chen ACS Select d.dnumber, dname, dlocation from department d, dept_locations l where d.dnumber=l.dnumber; d.dnumber dname dlocation 1 Headquarters Houston 4 Administration Stafford 5 Research Bellaire 5 Research Sugarland 5 Research Houston aliasing basic join condition 3 departments, 5 locations, 5 rows in the result

SQL Jan. 2012Yangjun Chen ACS Select s.ssn, s.lname, r.lname from employee s, employee r where s.ssn=r.superssn; s.ssns.lnamer.lname Wong Smith BorgWong WallaceZelaya BorgWallace Wong Nanayan Wong English WallaceJabbar Recursive join - same relation - aliases required

SQL Jan. 2012Yangjun Chen ACS Ordering the result set: Select s.ssn, s.lname, r.lname from employee s, employee r where s.ssn=r.superssn order by s.lname, r.lname; s.ssns.lnamer.lname BorgWallace BorgWong WallaceJabbar WallaceZelaya Wong English Wong Nanayan Wong Smith

SQL Jan. 2012Yangjun Chen ACS Summarizing underlying rows: Select s.ssn, s.lname, count(r.lname) from employee s, employee r where s.ssn=r.superssn group by s.ssn, s.lname; s.ssns.lnamer.lname Borg Wong Wallace2

SQL Jan. 2012Yangjun Chen ACS Eliminating Groups from the result: Select s.ssn, s.lname, count(r.lname) from employee s, employee r where s.ssn=r.superssn group by s.ssn, s.lname having count(r.lname) < 3; s.ssns.lnamecount(r.lname) Borg Wallace2

SQL Jan. 2012Yangjun Chen ACS Use of *: select * from dept_locations; select count(*) from dept_locations; select count(*) from dept_locations where dlocation=‘Houston’; dnumberdlocation 1Houston 4Stafford 5Bellaire 5Sugarland 5Houston Count(*) 5 Count(*) 2

SQL Jan. 2012Yangjun Chen ACS Use of Like and Between: select * from dept_locations where dlocation like ‘%o%’; dnumberdlocation 1Houston 4Stafford 5Houston Select fname, salary from employee where salary between and 50000; fnamesalary Franklin40000 Jennifer43000 Ramesh38000 In Access, wildcard is represented by *, instead of %.

SQL Jan. 2012Yangjun Chen ACS Subqueries: select ssn, fname from employee where ssn in (select essn from dependent); ssnfname Franklin Jennifer John select ssn, fname from employee where ssn = any (select essn from dependent); The above is a special case of a comparison operator followed by any/some: Other possibilities: > any >= any any

SQL Jan. 2012Yangjun Chen ACS Subqueries: ssnfnamesalary James55000 Select ssn, fname, salary from employee where salary > all (select salary from employee where dno=4); comparison operator can be followed by all: Note that the inner query needs only to be executed once.

SQL Jan. 2012Yangjun Chen ACS Correlated Subqueries: dnossnfname James Jennifer Franklin Select dno, ssn, fname from employee e where salary >= all (select salary from employee x where x.dno=e.dno); The inner and outer query are related. Conceptually, the subquery is executed once for each row of the outer query:

SQL Jan. 2012Yangjun Chen ACS Correlated Subqueries: dnossnfname James Jennifer Franklin Select dno, ssn, fname from employee e where salary = (select max(salary) from employee x where x.dno=e.dno); The inner and outer query are related. Conceptually, the subquery is executed once for each row of the outer query:

SQL Jan. 2012Yangjun Chen ACS

SQL Jan. 2012Yangjun Chen ACS

SQL Jan. 2012Yangjun Chen ACS

SQL Jan. 2012Yangjun Chen ACS

SQL Jan. 2012Yangjun Chen ACS

SQL Jan. 2012Yangjun Chen ACS Correlated Subquery example: Suppose we want to find out who is working on a project that is not located where their department is located. Note that the Employee table has the department number for an employee, and that Dept_locations has the locations for the department Note that the Project table has the location for the project Note that the Works_on relates employees to projects We’ll do this in two parts: a join that relates employees and projects (via works_on) a subquery that obtains the department locations for a given employee

SQL Jan. 2012Yangjun Chen ACS Correlated Subqueries: A 3-way join to bring related employee and project data together: SELECT employee.ssn, employee.fname, employee.lname, project.pnumber, project.plocation FROM employee, project, works_on WHERE employee.ssn = works_on.essn and project.pnumber = works_on.pno A 3-way join We’ll see this join again where Inner Joins are discussed

SQL Jan. 2012Yangjun Chen ACS Correlated Subqueries: Now we incorporate a correlated subquery to restrict the result to those employees working on a project that is not where their department is located: SELECT employee.ssn, employee.fname, employee.lname, project.pnumber, project.plocation FROM employee, project, works_on WHERE employee.ssn = works_on.essn and project.pnumber = works_on.pno and plocation NOT IN (SELECT dlocation FROM dept_locations WHERE dnumber=employee.dno);

SQL Jan. 2012Yangjun Chen ACS Correlated Subqueries: Now we incorporate a correlated subquery to restrict the result to those employees working on a project that is not where their department is located: SELECT employee.ssn, employee.fname, employee.lname, project.pnumber, project.plocation FROM employee x, project, works_on WHERE employee.ssn = works_on.essn and project.pnumber = works_on.pno and plocation NOT IN (SELECT dlocation FROM dept_locations y WHERE y.dnumber = x.dno);

SQL Jan. 2012Yangjun Chen ACS Subqueries with Exists and Not Exists: Who has dependents? SELECT fname, lname FROM employee WHERE EXISTS (SELECT * FROM dependent where essn=ssn); Who does not have dependents? SELECT fname, lname FROM employee WHERE NOT EXISTS (SELECT * FROM dependent where essn=ssn);

SQL Jan. 2012Yangjun Chen ACS Subqueries with Exists and Not Exists: Who is working on every project? SELECT e.ssn, e.fname, e.lname FROM employee AS e WHERE NOT EXISTS (SELECT * FROM project AS p WHERE NOT EXISTS (SELECT * FROM works_on AS w WHERE w.essn=e.ssn AND w.pno=p.pno)); There is no project that the employee does not work on. This is not a simple query!

SQL Jan. 2012Yangjun Chen ACS ssnfname lname    … EMPLOYEE essn PNo hours       WORK_ON PNo Pname    … … … … PROJECT … Example :

SQL Jan. 2012Yangjun Chen ACS For each employee e, check whether there is any project p in the result obtained by evaluating the following query. SELECT * FROM project AS p WHERE NOT EXISTS (SELECT * FROM works_on AS w WHERE w.essn=e.ssn AND w.pno=p.pno); If not, e must be an employee who works on all projects. The result is a set of projects. On each of them, e doesn’t work.

SQL Jan. 2012Yangjun Chen ACS Consider the employee with ssn = 1. Since there is a project with PNo = 3 in the result, he does not work on all projects. ssnfname lname    … EMPLOYEE essn PNo hours         WORK_ON PNoPname    … … … … Project … e p w For e = 1, PNo = 1 not in the result.

SQL Jan. 2012Yangjun Chen ACS ssnfname lname    … EMPLOYEE essn PNo hours         WORK_ON PNoPname    … … … … Project … e p w For e = 1, PNo = 2 not in the result.

SQL Jan. 2012Yangjun Chen ACS ssnfname lname    … EMPLOYEE essn PNo hours         WORK_ON PNoPname    … … … … Project … e p w For e= 1, PNo = 3 in the result.

SQL Jan. 2012Yangjun Chen ACS Consider the employee with ssn = 2. Since there is two projects with Pno = 1 and PNo = 2 in the result, he does not work on all projects. ssnfname lname    … EMPLOYEE essn PNo hours         WORK_ON PNoPname    … … … … Project … e p w For e= 2, PNo = 1 in the result.

SQL Jan. 2012Yangjun Chen ACS Consider the employee with ssn = 3. Since there is no project in the result, he work on all projects. ssnfname lname    … EMPLOYEE essn PNo hours        WORK_ON PNoPname    … … … … Project … e p w For e= 3, PNo = 1 not in the result.

SQL Jan. 2012Yangjun Chen ACS Consider the employee with ssn = 3. Since there is no project in the result, he work on all projects. ssnfname lname    … EMPLOYEE essn PNo hours         WORK_ON PNoPname    … … … … Project … e p w For e= 3, PNo = 2 not in the result.

SQL Jan. 2012Yangjun Chen ACS Consider the employee with ssn = 3. Since there is no project in the result, he work on all projects. ssnfname lname    … EMPLOYEE essn PNo hours         WORK_ON PNoPname    … … … … Project … e p w For e = 3, PNo = 3 not in the result.

SQL Jan. 2012Yangjun Chen ACS Renaming the result set: SELECT fname AS FirstName, lname AS Surname FROM employee;

SQL Jan. 2012Yangjun Chen ACS Aggregate functions: AVG, SUM, COUNT, MAX, MIN Select count(*) from employee Select count(superssn) from employee Select count(distinct superssn) from employee Number of employees - count number of rows Number of employees who have supervisors - count ignores nulls Number of employees who are supervisors - doesn’t work in Access!

SQL Jan. 2012Yangjun Chen ACS Aggregate functions are normally used with Group By clause: Select s.ssn, s.lname, count(r.lname) from employee s, employee r where s.ssn=r.superssn group by s.ssn, s.lname; s.ssns.lnamer.lname Borg Wong Wallace2

SQL Jan. 2012Yangjun Chen ACS Nulls: Some fields are designed so that a value is not required In figure 7.1(a) on page 189, some fields have NOT NULL specified - these must be assigned a value on INSERT. Others do not have this specification - the default is Null, unless you override that Specific constructs are used to test for nulls: select fname, lname from employee where superssn is null; Who does not have a supervisor?

SQL Jan. 2012Yangjun Chen ACS Special joins: Outer join table this example is a right outer join - lists every department regardless of whether or not it has a manager SELECT department.dnumber, department.dname, employee.fname, employee.lname FROM employee RIGHT OUTER JOIN department ON employee.ssn = department.mgrssn;

SQL Jan. 2012Yangjun Chen ACS Special joins: Inner join table this example is an inner join - lists employees and their departments SELECT department.dnumber, department.dname, employee.fname, employee.lname FROM department INNER JOIN employee ON department.dnumber = employee.dno; SELECT department.dnumber, department.dname, employee.fname, employee.lname FROM department, employee WHERE department.dnumber = employee.dno;

SQL Jan. 2012Yangjun Chen ACS Special joins: Inner join table with a Where clause this example is an inner join - lists employees and their departments, but only for the Research department SELECT department.dnumber, department.dname, employee.fname, employee.lname FROM department INNER JOIN employee ON department.dnumber = employee.dno WHERE dname = 'Research';

SQL Jan. 2012Yangjun Chen ACS Special joins: Inner join table with a Where clause this example is an inner join - lists employees and their departments, but only for the Research department SELECT department.dnumber, department.dname, employee.fname, employee.lname FROM department, employee WHERE department.dnumber = employee.dno and dname = 'Research';

SQL Jan. 2012Yangjun Chen ACS Special joins: Inner joins and a Where clause this example lists employees working on a project that is not where their department is located SELECT employee.fname, employee.lname, works_on.pno, project.plocation FROM project INNER JOIN (employee INNER JOIN works_on ON employee.ssn = works_on.essn) ON project.pnumber = works_on.pno WHERE plocation not in (select dlocation from dept_locations where dnumber = dno);

SQL Jan. 2012Yangjun Chen ACS Comparison: SELECT employee.ssn, employee.fname, employee.lname, project.pnumber, project.plocation FROM employee, project, works_on WHERE employee.ssn = works_on.essn and project.pnumber = works_on.pno and plocation NOT IN (SELECT dlocation FROM dept_locations WHERE dnumber=employee.dno);

SQL Jan. 2012Yangjun Chen ACS The design view was reduced to these tables and relationships. Access automatically incorporated the inner joins - see the SQL view

SQL Jan. 2012Yangjun Chen ACS the SQL view

SQL Jan. 2012Yangjun Chen ACS Update statements: pages Insert Update Delete INSERT INTO employee ( fname, lname, ssn, dno ) VALUES ( "Joe", "Smith", 909, 1); UPDATE employee SET salary = WHERE ssn=909; DELETE FROM employee WHERE ssn=909; Note that Access changes the above to read: INSERT INTO employee ( fname, lname, ssn, dno ) SELECT "Joe", "Smith", 909, 1;

SQL Jan. 2012Yangjun Chen ACS Views: pages Use a Create View command essentially a select specifying the data that makes up the view Create View Enames as select lname, fname from employee CREATE VIEWEnames (lname, fname) AS SELECTLNAME, FNAME FROMEMPLOYEE

SQL Jan. 2012Yangjun Chen ACS CREATE VIEWDEPT_INFO (DEPT_NAME, NO_OF_EMPS, TOTAL_SAL) AS SELECTDNAME, COUNT(*), SUM(SALARY) FROMDEPARTMENT, EMPLOYEE WHEREDNUMBER = DNO GROUP BYDNAME;

SQL Jan. 2012Yangjun Chen ACS Views are very common in business systems users’ view of data is simplified Create View EmpProj as select lname, fname, pno from employee inner join …………. a form of security - user sees only the data he/she needs to if the primary key is preserved, updates to a base table through a view is possible As complex as needed

SQL Jan. 2012Yangjun Chen ACS Other SQL capabilities Assertions can be used for some constraints e.g. Create Assertion Executed and enforced by DBMS Constraint: The salary of an employee must not be greater than the salary of the manager of the department that the employee works for. CREATE ASSERTION salary_constraint CHECK (NOT EXISTS (SELECT * FROM employee e, employee m, department d where e.salary > m.salary and e.dno=d.dnumber and d.mgrssn=m.ssn));

SQL Jan. 2012Yangjun Chen ACS Assertions in old version of SQL Assert trigger Assert statement Assert SALARY_Constraint on employee e, employee m, department d: not (e.salary > m.salary and e.dno=d.dnumber and d.mgrssn=m.ssn); Trigger DEFINE trigger SALARY_TRIGGER on employee e, employee m, department d: (e.salary > m.salary and e.dno=d.dnumber and d.mgrssn=m.ssn ACTION_PROCEDURE inform_manager(d.mgrssn);

SQL Jan. 2012Yangjun Chen ACS Security: Grant and Revoke are used to specify user privileges Grant select, update on Employee to Diane; Revoke update, delete on Works_on from Jim; Embedded SQL: SQL can be placed within 3GL programs Transactions: SQL systems implement the ACID properties

SQL Jan. 2012Yangjun Chen ACS