Dr. Chen, Oracle Database System (Oracle) 1 Basic Nested Queries and Views Jason C. H. Chen, Ph.D. Professor of MIS School of Business Gonzaga University.

Slides:



Advertisements
Similar presentations
Advanced SQL Topics Edward Wu.
Advertisements

© Abdou Illia MIS Spring 2014
Dr. Chen, Oracle Database System (Oracle) 1 Chapter 12 Subqueries and Merge Statements (up to p.451) Jason C. H. Chen, Ph.D. Professor of MIS School of.
Chapter 11 Group Functions (up to p.402)
Instructor: Craig Duckett CASE, ORDER BY, GROUP BY, HAVING, Subqueries
Introduction to Structured Query Language (SQL)
A Guide to Oracle9i1 Using SQL Queries to Insert, Update, Delete, and View Data Chapter 3.
Chapter 3: Using SQL Queries to Insert, Update, Delete, and View Data
View Sen Zhang. Views are very common in business systems users view of data is simplified a form of security - user sees only the data he/she needs to.
A Guide to MySQL 7. 2 Objectives Understand, define, and drop views Recognize the benefits of using views Use a view to update data Grant and revoke users’
View and Materialized view. What is a view? Logically represents subset of data from one or more table. In sql, a view is a virtual relation based on.
Introduction to Structured Query Language (SQL)
Introduction to Oracle9i: SQL1 Views. Introduction to Oracle9i: SQL2 Chapter Objectives Create a view, using CREATE VIEW command or the CREATE OR REPLACE.
Microsoft Access 2010 Chapter 7 Using SQL.
Guide to Oracle10G1 Using SQL Queries to Insert, Update, Delete, and View Data Chapter 3.
ASP.NET Programming with C# and SQL Server First Edition
Chapter 10 Queries and Updating Part C. SQL Copyright 2005 Radian Publishing Co.
Dr. Chen, Oracle Database System (Oracle) 1 Database Development DDL DML DCL JL_D.B. ORACLE (SQL Components) (Retrieve Data and Produce Information from.
Dr. Chen, Oracle Database System (Oracle) 1 Chapter 4 Constraints Jason C. H. Chen, Ph.D. Professor of MIS School of Business Gonzaga University Spokane,
Concepts of Database Management, Fifth Edition Chapter 4: The Relational Model 3: Advanced Topics.
Chapter 5 Data Manipulation and Transaction Control
SQL/Lesson 4/Slide 1 of 45 Using Subqueries and Managing Databases Objectives In this lesson, you will learn to: *Use subqueries * Use subqueries with.
ITBIS373 Database Development
Dr. Chen, Oracle Database System (Oracle) 1 HW Discussion Chapter 5 (#9) –Why need two “deletes”? SQL> --9. SQL> SQL> DELETE FROM orderitems 2 WHERE order#
Dr. Chen, Oracle Database System (Oracle) 1 Chapter 6 Additional Database Objects (up to p.195 and all in the pptx file) Jason C. H. Chen, Ph.D. Professor.
Dr. Chen, Business Database Systems (Oracle) Instruction on Creating sql files and SPOOL Jason C.H. Chen, Ph.D. Professor of MIS School of Business, Gonzaga.
Dr. Chen, Business Database Systems JustLee DataBase Referential Integrity Jason C. H. Chen, Ph.D. Professor of MIS School of Business Administration Gonzaga.
Dr. Chen, Data Base Management Chapter 6: Introduction to SQL Jason C. H. Chen, Ph.D. Professor of MIS School of Business Administration Gonzaga University.
7 1 Chapter 7 Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel.
Views In some cases, it is not desirable for all users to see the entire logical model (that is, all the actual relations stored in the database.) In some.
6 1 Lecture 8: Introduction to Structured Query Language (SQL) J. S. Chou, P.E., Ph.D.
Open Source Server Side Scripting ECA 236 Open Source Server Side Scripting MySQL – Inserting Data.
ITBIS373 Database Development Lecture 3a - Chapter 3: Using SQL Queries to Insert, Update, Delete, and View Data.
Database Systems Design, Implementation, and Management Coronel | Morris 11e ©2015 Cengage Learning. All Rights Reserved. May not be scanned, copied or.
Chapter 12 Subqueries and Merge Statements
1 Creating and Maintaining Database Objects Part 1 Database Systems.
Chapter 13 Views Oracle 10g: SQL. Oracle 10g: SQL2 Objectives Create a view, using CREATE VIEW command or the CREATE OR REPLACE VIEW command Employ the.
Dr. Chen, Oracle Database System (Oracle) 1 Chapter 7 User Creation and Management Jason C. H. Chen, Ph.D. Professor of MIS School of Business Gonzaga.
LM 5 Introduction to SQL MISM 4135 Instructor: Dr. Lei Li.
MySQL Subquery Source: Dev.MySql.com
Chapter 12 Subqueries and MERGE Oracle 10g: SQL
Prepared by : Moshira M. Ali CS490 Coordinator Arab Open University
 2012 Pearson Education, Inc. All rights reserved.
Instructor: Craig Duckett Lecture 09: Tuesday, April 25th, 2017
ATS Application Programming: Java Programming
Subqueries Schedule: Timing Topic 25 minutes Lecture
Database Systems: Design, Implementation, and Management Tenth Edition
Introduction to Oracle9i: SQL
Basic Nested Queries and Views
What Is a View? EMPNO ENAME JOB EMP Table EMPVU10 View
Chapter 1 Introduction.
Chapter # 7 Introduction to Structured Query Language (SQL) Part II.
Chapter 2 Views.
Chapter 13 Subqueries and Views
Creating and Maintaining
A Guide to SQL, Eighth Edition
Chapter 2 Views.
Chapter 1 Introduction.
Contents Preface I Introduction Lesson Objectives I-2
Chapter 7 Using SQL in Applications
Introduction to Access
Chapter 8 Advanced SQL.
Subqueries Schedule: Timing Topic 25 minutes Lecture
Using Subqueries to Solve Queries
Database Systems: Design, Implementation, and Management Tenth Edition
Structured Query Language – The Basics
IST 318 Database Administration
Using Subqueries to Solve Queries
Subqueries Schedule: Timing Topic 25 minutes Lecture
Manipulating Data Lesson 3.
Presentation transcript:

Dr. Chen, Oracle Database System (Oracle) 1 Basic Nested Queries and Views Jason C. H. Chen, Ph.D. Professor of MIS School of Business Gonzaga University Spokane, WA USA

Dr. Chen, Oracle Database System (Oracle) 2 Objectives Learn what is nested query and how to create basic nested SQL queries Learn what is database views and how/why to create views –Help you to make your job much easier on working with Queries for MVC mini-case (Phase III)

Dr. Chen, Oracle Database System (Oracle) 3 Subqueries and Their Uses Subquery – a query nested inside another query Used when a query is based on an unknown value Requires SELECT and FROM clauses Must be enclosed in parentheses Place on right side of comparison operator We will study more in chapter 12

Dr. Chen, Oracle Database System (Oracle) 4 Creating Nested Queries Used to select results based on the result of a query Consists of a main query and one or more subqueries. –Main/outer query: first query that appears in the SELECT command –Subquery retrieves values that the main query’s search condition must match that return one value that returns one value

Dr. Chen, Oracle Database System (Oracle) 5 Refresh the Northwoods University Database Create a new folder of nw_cw (under c:\oradata\) and download all script files from the Bb Re-run a script file c:\oradata\NW_CW\northwoods.sql

Dr. Chen, Oracle Database System (Oracle) 6 Subquery Returns Single Value Query: List all students who have the same S_CLASS value as student Jorge Perez. SELECT s_last, s_first FROM student WHERE s_class = S_LAST S_FIRST Jones Tammy Perez Jorge ‘SR’; It is impossible for us to manually examine the value (e.g., ‘SR’) that we should put in. What is a right way?

Dr. Chen, Oracle Database System (Oracle) 7 Subquery Returns Single Value Query: List all students who have the same S_CLASS value as student Jorge Perez. SELECT s_class FROM student WHERE s_last = 'Perez' AND s_first = 'Jorge‘ ; SELECT s_last, s_first FROM student WHERE s_class = ( ) You need to run the following command to make the example c:\oradata\NW_CW\northwoods.sql S_LAST S_FIRST Jones Tammy Perez Jorge

Dr. Chen, Oracle Database System (Oracle) 8 Nested Query Where Subquery Returns Multiple Values Syntax: SELECT column1, column2, … FROM table1, table2, … WHERE join conditions AND search_column1 IN (SELECT column1 FROM table1, table2, … WHERE search and join conditions) Subquery that returns multiple values

Dr. Chen, Oracle Database System (Oracle) 9 Nested Query Where Subquery Returns Multiple Values Display the names of all students who have enrolled in the same course sections as Jorge Perez. (SELECT c_sec_id FROM student, enrollment WHERE student.s_id = enrollment.s_id AND s_last = 'Perez' AND s_first = 'Jorge'); SELECT DISTINCT s_last, s_first FROM student, enrollment WHERE student.s_id = enrollment.s_id AND c_sec_id IN S_LAST S_FIRST Johnson Lisa Jones Tammy Marsh John Perez Jorge

Dr. Chen, Oracle Database System (Oracle) 10 Database Views Table-1Table-NTable-2 database Single view table Query Output: Report, Graphs Database view A database view is a logical (virtual) table based on a query. It does not store data, but presents it in a format different from the one in which it is stored in the underlying tables. With the database view, you can view database records, but you can’t insert new records or modify or delete exiting records in the view.

Dr. Chen, Oracle Database System (Oracle) 11 Views Permanent objects (logical or virtual table) that store queries but ____ data Based on a source query that: –can specify a subset of a single table’s fields or records –can join multiple tables Two purposes –Reduce complex query requirements –Restrict users’ access to sensitive data (enforce security; user has access to view but not underlying table) no

Dr. Chen, Oracle Database System (Oracle) 12 Creating and Using Database Views Views can be updateable if: –SELECT clause contains only fieldnames, no functions or calculations –Can ____ contain the ORDER BY, DISTINCT, or GROUP BY clauses, group functions, or set operators –search condition cannot contain a nested query Views are used like tables for selecting, inserting, updating and deleting data (only updatable views can be modified) not

Dr. Chen, Oracle Database System (Oracle) 13 Database View (cont.)  SELECT view_name FROM user_views;  SELECT view_name FROM ALL_VIEWS WHERE owner=‘SYSTEM’;  DROP VIEW ;  CREATE OR REPLACE VIEW AS ;

Dr. Chen, Oracle Database System (Oracle) 14 Database View (cont.) What are gains? --EXTRA for VIEW SELECT firstname || ' ' || lastname AS Name, order#, orderdate FROM customers_vu, orders WHERE customers_vu.customer# = orders.order# ORDER BY Name;  DELETING VIEWS DROP VIEW viewname; DROP VIEW customers_vu; CREATE VIEW AS ; e.g., SELECT view_name FROM user_views; CREATE OR REPLACE VIEW customers_vu AS SELECT customer#, lastname, firstname, region FROM customers;

Dr. Chen, Oracle Database System (Oracle) 15 CREATE OR REPLACE VIEW book_info_view AS SELECT title, contact, phone FROM books, publisher WHERE books.pubid = publisher.pubid; SELECT * FROM book_info_view ORDER by title; Database View (cont.) Anything new on the book_info_view ? Ans: The view is created using two tables DROP VIEW book_info_view;

Dr. Chen, Oracle Database System (Oracle) 16 Creating a Simple View Only references one table – no group functions, GROUP BY clause, or expressions Figure 13-4 Selecting all records from the INVENTORY view -- chapter 13, Figure 13-4(b); p a more meaningful view name CREATE VIEW books_inventory_vu AS SELECT isbn, title, retail price FROM books WITH READ ONLY; SELECT * FROM books_inventory_vu; -- chapter 13, Figure 13-4; p.477 CREATE VIEW inventory AS SELECT isbn, title, retail price FROM books WITH READ ONLY; SELECT * FROM inventory; DROP VIEW inventory; SELECT * FROM inventory; What happen to “Database” after “DROP” view? SELECT * FROM books; -- You may REcreate inventory view

Dr. Chen, Oracle Database System (Oracle) 17 CREATE OR REPLACE VIEW book_vu AS SELECT isbn, title, category FROM books WHERE category = 'COOKING'; SELECT * FROM book_vu; SQL> SELECT * 2 FROM book_vu; ISBN TITLE CATEGORY COOKING WITH MUSHROOMS COOKING THE WOK WAY TO COOK COOKING See next slide for detailed process

Dr. Chen, Oracle Database System (Oracle) 18 Figure 13-1 View Processing

Dr. Chen, Oracle Database System (Oracle) 19 Database View (continued) CREATE VIEW AS ; e.g., SELECT view_name FROM user_views; CREATE OR REPLACE VIEW customers_view AS SELECT customer#, Lastname, Firstname FROM customers; SELECT view_name FROM user_views; SELECT * FROM customers_view; What are gains? --more example for VIEW SELECT Lastname, Firstname, cv.customer#, order# FROM customers_view cv, orders WHERE cv.customer# = orders.customer# AND cv.customer#=1001;  DELETING VIEWS DROP VIEW viewname; DROP VIEW customers_view;

Dr. Chen, Oracle Database System (Oracle) 20 More to go … More Nested Queries and Subqueries will be studied in chapter 12. More views will be studied in chapter 13. You will apply the “view” [an efficient way to produce the solution] to the mini case (MVC mini-case) that will be assigned later.

Dr. Chen, Oracle Database System (Oracle) 21 END OF VIEWS