Advanced SQL. Lecture 3. Outline. Unions, intersections, differences Subqueries, Aggregations, NULLs Modifying databases, Indexes, Views



Similar documents
COMP 5138 Relational Database Management Systems. Week 5 : Basic SQL. Today s Agenda. Overview. Basic SQL Queries. Joins Queries

Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification

Relational Database: Additional Operations on Relations; SQL

Define terms Write single and multiple table SQL queries Write noncorrelated and correlated subqueries Define and use three types of joins

CSC 443 Data Base Management Systems. Basic SQL

Database Query 1: SQL Basics

4. SQL. Contents. Example Database. CUSTOMERS(FName, LName, CAddress, Account) PRODUCTS(Prodname, Category) SUPPLIERS(SName, SAddress, Chain)

Part A: Data Definition Language (DDL) Schema and Catalog CREAT TABLE. Referential Triggered Actions. CSC 742 Database Management Systems

Oracle SQL. Course Summary. Duration. Objectives

Databases 2011 The Relational Model and SQL

Oracle Database: SQL and PL/SQL Fundamentals NEW

Instant SQL Programming

Chapter 5. SQL: Queries, Constraints, Triggers

Oracle Database: SQL and PL/SQL Fundamentals

SQL NULL s, Constraints, Triggers

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff

Oracle Database 12c: Introduction to SQL Ed 1.1

Advance DBMS. Structured Query Language (SQL)

IT2305 Database Systems I (Compulsory)

Introduction to Microsoft Jet SQL

SQL SELECT Query: Intermediate

More on SQL. Juliana Freire. Some slides adapted from J. Ullman, L. Delcambre, R. Ramakrishnan, G. Lindstrom and Silberschatz, Korth and Sudarshan

Oracle Database: SQL and PL/SQL Fundamentals

SQL: Queries, Programming, Triggers

Example Instances. SQL: Queries, Programming, Triggers. Conceptual Evaluation Strategy. Basic SQL Query. A Note on Range Variables

Chapter 8. SQL-99: SchemaDefinition, Constraints, and Queries and Views

1 Structured Query Language: Again. 2 Joining Tables

SQL: Queries, Programming, Triggers

SUBQUERIES AND VIEWS. CS121: Introduction to Relational Database Systems Fall 2015 Lecture 6

Information Systems SQL. Nikolaj Popov

Intermediate SQL C H A P T E R4. Practice Exercises. 4.1 Write the following queries in SQL:

Introduction to database design

SQL Query Evaluation. Winter Lecture 23

Lecture 4: More SQL and Relational Algebra

IT2304: Database Systems 1 (DBS 1)

Relational Databases

Oracle Database 10g: Introduction to SQL

Introduction to SQL ( )

Data Structure: Relational Model. Programming Interface: JDBC/ODBC. SQL Queries: The Basic From

Databases What the Specification Says

Exercises. a. Find the total number of people who owned cars that were involved in accidents

Part 4: Database Language - SQL

Relational Algebra and SQL

Guide to SQL Programming: SQL:1999 and Oracle Rdb V7.1

UNIT 6. Structured Query Language (SQL) Text: Chapter 5

Relational Algebra. Query Languages Review. Operators. Select (σ), Project (π), Union ( ), Difference (-), Join: Natural (*) and Theta ( )

Figure 4.12.Insurancedatabase.

5. CHANGING STRUCTURE AND DATA


Netezza SQL Class Outline

The SQL Query Language. Creating Relations in SQL. Referential Integrity in SQL. Basic SQL Query. Primary and Candidate Keys in SQL

SQL Tables, Keys, Views, Indexes

Database Programming with PL/SQL: Learning Objectives

SQL (structured query language)

Programming with SQL

How To Create A Table In Sql (Ahem)

Oracle Database: SQL and PL/SQL Fundamentals NEW

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA

SQL DATA DEFINITION: KEY CONSTRAINTS. CS121: Introduction to Relational Database Systems Fall 2015 Lecture 7

- Eliminating redundant data - Ensuring data dependencies makes sense. ie:- data is stored logically

SQL Server 2008 Core Skills. Gary Young 2011

History of SQL. Relational Database Languages. Tuple relational calculus ALPHA (Codd, 1970s) QUEL (based on ALPHA) Datalog (rule-based, like PROLOG)

Boats bid bname color 101 Interlake blue 102 Interlake red 103 Clipper green 104 Marine red. Figure 1: Instances of Sailors, Boats and Reserves

SQL Nested & Complex Queries. CS 377: Database Systems

Exercise 1: Relational Model

Elena Baralis, Silvia Chiusano Politecnico di Torino. Pag. 1. Physical Design. Phases of database design. Physical design: Inputs.

SQL. Short introduction

Optimizing Your Data Warehouse Design for Superior Performance

Structured Query Language (SQL)

The Structured Query Language. De facto standard used to interact with relational DB management systems Two major branches

CS143 Notes: Views & Authorization

Oracle Database 10g Express

SQL Simple Queries. Chapter 3.1 V3.0. Napier University Dr Gordon Russell

Chapter 14: Query Optimization

Introduction to SQL for Data Scientists

Introduction to Triggers using SQL

Querying Microsoft SQL Server

ICAB4136B Use structured query language to create database structures and manipulate data

Mini User's Guide for SQL*Plus T. J. Teorey

3.GETTING STARTED WITH ORACLE8i

Introduction to SQL C H A P T E R3. Exercises

Querying Microsoft SQL Server (20461) H8N61S

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added?

Query-by-Example (QBE)

RDBMS Using Oracle. Lecture Week 7 Introduction to Oracle 9i SQL Last Lecture. kamran.munir@gmail.com. Joining Tables

Introduction to SQL: Data Retrieving

Oracle 10g PL/SQL Training

Course ID#: W 35 Hrs. Course Content

T-SQL STANDARD ELEMENTS

A basic create statement for a simple student table would look like the following.

Querying Microsoft SQL Server 20461C; 5 days

MOC QUERYING MICROSOFT SQL SERVER

MOC 20461C: Querying Microsoft SQL Server. Course Overview

Summary on Chapter 4 Basic SQL

DBMS / Business Intelligence, SQL Server

A Comparison of Database Query Languages: SQL, SPARQL, CQL, DMX

Triggers & Packages. {INSERT [OR] UPDATE [OR] DELETE}: This specifies the DML operation.

Using Temporary Tables to Improve Performance for SQL Data Services

Querying Microsoft SQL Server Course M Day(s) 30:00 Hours

Transcription:

Advanced SQL Lecture 3 1 Outline Unions, intersections, differences Subqueries, Aggregations, NULLs Modifying databases, Indexes, Views Reading: Textbook chapters 6.2 and 6.3 from SQL for Nerds : chapter 4, More complex queries (you will find it very useful for subqueries) Pointbase developer manual 2 1

Union, Intersection, Difference (SELECT name FROM Person WHERE City= Seattle ) UNION (SELECT name FROM Person, Purchase WHERE buyer=name AND store= The Bon ) Similarly, you can use INTERSECT and EXCEPT. You must have the same attribute names (otherwise: rename). 3 Conserving Duplicates (SELECT name FROM Person WHERE City= Seattle ) UNION ALL (SELECT name FROM Person, Purchase WHERE buyer=name AND store= The Bon ) 4 2

Subqueries A subquery producing a single value: SELECT Purchase.product FROM Purchase WHERE buyer = (SELECT name FROM Person WHERE ssn = 123456789 ); In this case, the subquery returns one value. If it returns more, it s a run-time error. 5 Subqueries Can say the same thing without a subquery: SELECT Purchase.product FROM Purchase, Person WHERE buyer = name AND ssn = 123456789 This is equivalent to the previous one when the ssn is a key and 123456789 exists in the database; otherwise they are different. 6 3

Subqueries Returning Relations Find companies that manufacture products bought by Joe Blow. SELECT Company.name FROM Company, Product WHERE Company.name = Product.maker AND Product.name IN (SELECT Purchase.product FROM Purchase WHERE Purchase.buyer = Joe Blow ); Here the subquery returns a set of values: no more runtime errors. 7 Subqueries Returning Relations Equivalent to: SELECT Company.name FROM Company, Product, Purchase WHERE Company.name = Product.maker AND Product.name = Purchase.product AND Purchase.buyer = Joe Blow Is this query equivalent to the previous one? Beware of duplicates! 8 4

Removing Duplicates SELECT DISTINCT Company.name FROM Company, Product WHERE Company.name= Product.maker AND Product.name IN (SELECT Purchase.product FROM Purchase WHERE Purchase.buyer = Joe Blow ) SELECT DISTINCT Company.name FROM Company, Product, Purchase WHERE Company.name= Product.maker AND Product.name = Purchase.product AND Purchase.buyer = Joe Blow Now they are equivalent 9 Subqueries Returning Relations You can also use: s > ALL R s > ANY R EXISTS R Product ( pname, price, category, maker) Find products that are more expensive than all those produced By Gizmo-Works SELECT name FROM Product WHERE price > ALL (SELECT price FROM Purchase WHERE maker= Gizmo-Works ) 10 5

Correlated Queries Movie (title, year, director, length) Find movies whose title appears more than once. correlation SELECT DISTINCT title FROM Movie AS x WHERE year < > ANY (SELECT year FROM Movie WHERE title = x.title); Note (1) scope of variables (2) this can still be expressed as single SFW 11 Complex Correlated Query Product ( pname, price, category, maker, year) Find products (and their manufacturers) that are more expensive than all products made by the same manufacturer before 1972 SELECT DISTINCT pname, maker FROM Product AS x WHERE price > ALL (SELECT price FROM Product AS y WHERE x.maker = y.maker AND y.year < 1972); Powerful, but much harder to optimize! 12 6

Existential/Universal Conditions Product ( pname, price, company) Company( cname, city) Find all companies s.t. some of their products have price < 100 SELECT DISTINCT Company.cname FROM Company, Product WHERE Company.cname = Product.company and Product.price < 100 Existential: easy! 13 Existential/Universal Conditions Product ( pname, price, company) Company( cname, city) Find all companies s.t. all of their products have price < 100 Universal: hard! 14 7

Existential/Universal Conditions 1. Find the other companies: i.e. s.t. some product 100 SELECT DISTINCT Company.cname FROM Company WHERE Company.cname IN (SELECT Product.company FROM Product WHERE Product.price >= 100 2. Find all companies s.t. all their products have price < 100 SELECT DISTINCT Company.cname FROM Company WHERE Company.cname NOT IN (SELECT Product.company FROM Product WHERE Product.price >= 100 15 Aggregation SELECT Avg(price) FROM Product WHERE maker= Toyota SQL supports several aggregation operations: SUM, MIN, MAX, AVG, COUNT 16 8

Aggregation: Count SELECT Count(*) FROM Product WHERE year > 1995 Except COUNT, all aggregations apply to a single attribute 17 Aggregation: Count COUNT applies to duplicates, unless otherwise stated: SELECT Count(category) FROM Product WHERE year > 1995 same as Count(*) Better: SELECT Count(DISTINCT category) FROM Product WHERE year > 1995 18 9

Simple Aggregation Purchase(product, date, price, quantity) Example 1: find total sales for the entire database SELECT Sum(price * quantity) FROM Purchase Example 1 : find total sales of bagels SELECT Sum(price * quantity) FROM Purchase WHERE product = bagel 19 Purchase Simple Aggregations Product Date Price Quantity Bagel 10/21 0.85 15 Banana 10/22 0.52 7 Banana 10/19 0.52 17 Bagel 10/20 0.85 20 20 10

Grouping and Aggregation Usually, we want aggregations on certain parts of the relation. Purchase(product, date, price, quantity) Example 2: find total sales after 9/1 per product. SELECT product, Sum(price*quantity) AS TotalSales FROM Purchase WHERE date > 9/1 GROUP BY product Let s see what this means 21 Grouping and Aggregation 1. Compute the FROM and WHERE clauses. 2. Group by the attributes in the GROUP BY 3. Produce one tuple for every group by applying aggregation SELECT can have (1) grouped attributes or (2) aggregates. 22 11

First compute the FROM-WHERE clauses (date > 9/1 ) then GROUP BY product: Product Date Price Quantity Banana 10/19 0.52 17 Banana 10/22 0.52 7 Bagel 10/20 0.85 20 Bagel 10/21 0.85 15 23 Then, aggregate Product TotalSales Bagel $29.75 Banana $12.48 SELECT product, Sum(price*quantity) AS TotalSales FROM Purchase WHERE date > 9/1 GROUP BY product 24 12

GROUP BY v.s. Nested Quereis SELECT product, Sum(price*quantity) AS TotalSales FROM Purchase WHERE date > 9/1 GROUP BY product SELECT DISTINCT x.product, (SELECT Sum(y.price*y.quantity) FROM Purchase y WHERE x.product = y.product AND y.date > 9/1 ) AS TotalSales FROM Purchase x WHERE x.date > 9/1 25 Another Example Product SumSales MaxQuantity Banana $12.48 17 Bagel $29.75 20 For every product, what is the total sales and max quantity sold? SELECT product, Sum(price * quantity) AS SumSales Max(quantity) AS MaxQuantity FROM Purchase GROUP BY product 26 13

HAVING Clause Same query, except that we consider only products that had at least 30 items sold. SELECT product, Sum(price * quantity) FROM Purchase WHERE date > 9/1 GROUP BY product HAVING Sum(quantity) > 30 HAVING clause contains conditions on aggregates. 27 General form of Grouping and Aggregation SELECT S FROM R 1,,R n WHERE C1 GROUP BY a 1,,a k HAVING C2 Why? S = may contain attributes a 1,,a k and/or any aggregates but NO OTHER ATTRIBUTES C1 = is any condition on the attributes in R 1,,R n C2 = is any condition on aggregate expressions 28 14

General form of Grouping and Aggregation SELECT S FROM R 1,,R n WHERE C1 GROUP BY a 1,,a k HAVING C2 Evaluation steps: 1. Compute the FROM-WHERE part, obtain a table with all attributes in R 1,,R n 2. Group by the attributes a 1,,a k 3. Compute the aggregates in C2 and keep only groups satisfying C2 4. Compute aggregates in S and return the result 29 Author(login,name) Document(url, title) Wrote(login,url) Mentions(url,word) Aggregation 30 15

Grouping vs. Nested Queries Find all authors who wrote at least 10 documents: Attempt 1: with nested queries SELECT DISTINCT Author.name FROM Author WHERE count(select Wrote.url FROM Wrote WHERE Author.login=Wrote.login) > 10 This is SQL by a novice 31 Grouping vs. Nested Queries Find all authors who wrote at least 10 documents: Attempt 2: SQL style (with GROUP BY) SELECT Author.name FROM Author, Wrote WHERE Author.login=Wrote.login GROUP BY Author.name HAVING count(wrote.url) > 10 This is SQL by an expert No need for DISTINCT: automatically from GROUP BY 32 16

Grouping vs. Nested Queries Find all authors who have a vocabulary over 10000 words: SELECT Author.name FROM Author, Wrote, Mentions WHERE Author.login=Wrote.login AND Wrote.url=Mentions.url GROUP BY Author.name HAVING count(distinct Mentions.word) > 10000 Look carefully at the last two queries: you may be tempted to write them as a nested queries, but in SQL we write them best with GROUP BY 33 NULLS in SQL Whenever we don t have a value, we can put a NULL Can mean many things: Value does not exists Value exists but is unknown Value not applicable Etc. The schema specifies for each attribute if it can be null (nullable attribute) or not How does SQL cope with tables that have NULLs? 34 17

Null Values If x= NULL then 4*(3-x)/7 is still NULL If x= NULL then x= Joe is UNKNOWN In SQL there are three boolean values: FALSE = 0 UNKNOWN = 0.5 TRUE = 1 35 Null Values C1 AND C2 = min(c1, C2) C1 OR C2 = max(c1, C2) NOT C1 = 1 C1 SELECT * FROM Person WHERE (age < 25) AND (height > 6 OR weight > 190) E.g. age=20 heigth=null weight=200 Rule in SQL: include only tuples that yield TRUE 36 18

Unexpected behavior: Null Values SELECT * FROM Person WHERE age < 25 OR age >= 25 Some Persons are not included! 37 Null Values Can test for NULL explicitly: x IS NULL x IS NOT NULL SELECT * FROM Person WHERE age < 25 OR age >= 25 OR age IS NULL Now it includes all Persons 38 19

Explicit joins in SQL: Product(name, category) Purchase(prodName, store) Same as: Outerjoins SELECT Product.name, Purchase.store FROM Product JOIN Purchase ON Product.name = Purchase.prodName SELECT Product.name, Purchase.store FROM Product, Purchase WHERE Product.name = Purchase.prodName But Products that never sold will be lost! 39 Left outer joins in SQL: Product(name, category) Purchase(prodName, store) Outerjoins SELECT Product.name, Purchase.store FROM Product LEFT OUTER JOIN Purchase ON Product.name = Purchase.prodName 40 20

Product Purchase Name Category ProdName Store Gizmo gadget Gizmo Wiz Camera Photo Camera Ritz OneClick Photo Camera Wiz Name Gizmo Camera Camera OneClick Store Wiz Ritz Wiz NULL 41 Outer Joins Left outer join: Include the left tuple even if there s no match Right outer join: Include the right tuple even if there s no match Full outer join: Include the both left and right tuples even if there s no match 42 21

Modifying the Database Three kinds of modifications Insertions Deletions Updates Sometimes they are all called updates 43 Insertions General form: INSERT INTO R(A1,., An) VALUES (v1,., vn) Example: Insert a new purchase to the database: INSERT INTO Purchase(buyer, seller, product, store) VALUES ( Joe, Fred, wakeup-clock-espresso-machine, The Sharper Image ) Missing attribute NULL. May drop attribute names if give them in order. 44 22

Insertions INSERT INTO PRODUCT(name) SELECT DISTINCT Purchase.product FROM Purchase WHERE Purchase.date > 10/26/01 The query replaces the VALUES keyword. Here we insert many tuples into PRODUCT 45 Insertion: an Example Product(name, listprice, category) Purchase(prodName, buyername, price) prodname is foreign key in Product.name Suppose database got corrupted and we need to fix it: corrupted Product Purchase prodname buyername name listprice category camera John price 200 gizmo 100 gadgets gizmo Smith 80 camera Smith 225 Task: insert in Product all prodnames from Purchase 46 23

Insertion: an Example INSERT INTO Product(name) SELECT DISTINCT prodname FROM Purchase WHERE prodname NOT IN (SELECT name FROM Product) name listprice category gizmo 100 Gadgets camera - - 47 Insertion: an Example INSERT INTO Product(name, listprice) SELECT DISTINCT prodname, price FROM Purchase WHERE prodname NOT IN (SELECT name FROM Product) name listprice category gizmo 100 Gadgets camera 200 - camera?? 225?? - Depends on the implementation 48 24

Deletions Example: DELETE FROM PURCHASE WHERE seller = Joe AND product = Brooklyn Bridge Factoid about SQL: there is no way to delete only a single occurrence of a tuple that appears twice in a relation. 49 Updates Example: UPDATE PRODUCT SET price = price/2 WHERE Product.name IN (SELECT product FROM Purchase WHERE Date = Oct, 25, 1999 ); 50 25

Data Definition in SQL So far we have see the Data Manipulation Language, DML Next: Data Definition Language (DDL) Data types: Defines the types. Data definition: defining the schema. Create tables Delete tables Modify table schema Indexes: to improve performance 51 Data Types in SQL Characters: CHAR(20) -- fixed length VARCHAR(40) -- variable length Numbers: INT, REAL plus variations Times and dates: DATE, TIME (Pointbase) 52 26

Example: Creating Tables CREATE TABLE Person( name VARCHAR(30), social-security-number INT, age SHORTINT, city VARCHAR(30), gender BIT(1), Birthdate DATE ); 53 Deleting or Modifying a Table Deleting: Example: DROP Person; Exercise with care!! Altering: (adding or removing an attribute). Example: ALTER TABLE Person ADD phone CHAR(16); ALTER TABLE Person DROP age; What happens when you make changes to the schema? 54 27

Specifying default values: Default Values CREATE TABLE Person( name VARCHAR(30), social-security-number INT, age SHORTINT DEFAULT 100, city VARCHAR(30) DEFAULT Seattle, gender CHAR(1) DEFAULT?, Birthdate DATE The default of defaults: NULL 55 Indexes REALLY important to speed up query processing time. Suppose we have a relation Person (name, age, city) SELECT * FROM Person WHERE name = Smith Sequential scan of the file Person may take long 56 28

Indexes Create an index on name: Adam Betty Charles. Smith. B+ trees have fan-out of 100s: max 4 levels! 57 Creating Indexes Syntax: CREATE INDEX nameindex ON Person(name) 58 29

Creating Indexes Indexes can be useful in range queries too: CREATE INDEX ageindex ON Person (age) B+ trees help in: SELECT * FROM Person WHERE age > 25 AND age < 28 Why not create indexes on everything? 59 Creating Indexes Indexes can be created on more than one attribute: Example: Helps in: and even in: CREATE INDEX doubleindex ON Person (age, city) SELECT * FROM Person WHERE age = 55 AND city = Seattle SELECT * FROM Person WHERE age = 55 But not in: SELECT * FROM Person WHERE city = Seattle 60 30

The Index Selection Problem We are given a workload = a set of SQL queries plus how often they run What indexes should we build to speed up the workload? FROM/WHERE clauses favor an index INSERT/UPDATE clauses discourage an index Index selection = normally done by people, recently done automatically 61 Defining Views Views are relations, except that they are not physically stored. For presenting different information to different users Employee(ssn, name, department, project, salary) CREATE VIEW Developers AS SELECT name, project FROM Employee WHERE department = Development Payroll has access to Employee, others only to Developers 62 31

A Different View Person(name, city) Purchase(buyer, seller, product, store) Product(name, maker, category) CREATE VIEW Seattle-view AS SELECT buyer, seller, product, store FROM Person, Purchase WHERE Person.city = Seattle AND Person.name = Purchase.buyer We have a new virtual table: Seattle-view(buyer, seller, product, store) 63 A Different View We can later use the view: SELECT name, store FROM Seattle-view, Product WHERE Seattle-view.product = Product.name AND Product.category = shoes 64 32

What Happens When We Query a View? SELECT name, Seattle-view.store FROM Seattle-view, Product WHERE Seattle-view.product = Product.name AND Product.category = shoes SELECT name, Purchase.store FROM Person, Purchase, Product WHERE Person.city = Seattle AND Person.name = Purchase.buyer AND Purchase.poduct = Product.name AND Product.category = shoes 65 Types of Views Virtual views: Used in databases Computed only on-demand slow at runtime Always up to date Materialized views Used in data warehouses Pre-computed offline fast at runtime May have stale data 66 33

Updating Views How can I insert a tuple into a table that doesn t exist? Employee(ssn, name, department, project, salary) CREATE VIEW Developers AS SELECT name, project FROM Employee WHERE department = Development If we make the following insertion: INSERT INTO Developers VALUES( Joe, Optimizer ) It becomes: INSERT INTO Employee(ssn, name, department, project, salary) VALUES(NULL, Joe, NULL, Optimizer, NULL) 67 Non-Updatable Views Person(name, city) Purchase(buyer, seller, product, store) CREATE VIEW City-Store AS SELECT Person.city, Purchase.store FROM Person, Purchase WHERE Person.name = Purchase.buyer How can we add the following tuple to the view? ( Seattle, Nine West ) We don t know the name of the person who made the purchase; cannot set to NULL (why?) 68 34

Summary Data Manipulation Language SELECT, INSERT Data Definition Language CREATE, DELETE, DROP 69 35