240 likes | 466 Views
Chapter 8. Advanced SQL Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel. In this chapter, you will learn:. About the relational set operators UNION, UNION ALL, INTERSECT, and MINUS How to use the advanced SQL JOIN operator syntax
E N D
Chapter 8 Advanced SQL Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel
In this chapter, you will learn: • About the relational set operators UNION, UNION ALL, INTERSECT, and MINUS • How to use the advanced SQL JOIN operator syntax • About the different types of subqueries and correlated queries Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Relational Set Operators • UNION • INTERSECT • MINUS • Work properly if relations are union-compatible • Names of relation attributes must be the same and their data types must be identical Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
UNION • Example -1: • SELECT CUS_LNAME, CUS_FNAME, CUS_INITIAL, CUS_AREACODE, CUS_PHONE FROM CUSTOMER UNION SELECT CUS_LNAME, CUS_FNAME, CUS_INITIAL, CUS_AREACODE, CUS_PHONE FROM CUSTOMER_2; • This example generates a combined listing of customers—one that excludes duplicate records • Example -2 • SELECT column-list FROM T1 UNION SELECT column-list FROM T2 UNION SELECT column-list FROM T3; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
UNION (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
UNION ALL • UNION ALL query can be used to produce a relation that retains the duplicate rows • UNION ALL statement can be used to unite more than just two queries • Example query: • SELECT CUS_LNAME, CUS_FNAME, CUS_INITIAL, CUS_AREACODE, CUS_PHONEFROM CUSTOMERUNION ALLSELECT CUS_LNAME, CUS_FNAME, CUS_INITIAL, CUS_AREACODE, CUS_PHONEFROM CUSTOMER_2; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
UNION ALL (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
INTERSECT • The NTERSECT statement can be used to combine rows from two queries, returning only the rows that appear in both sets Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
MINUS • The MINUS statement in SQL combines rows from two queries and returns only the rows that appear in the first set but not in the second Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Syntax Alternatives • For example, the following query returns the customer codes for all customers who are located in area code 615 and who have made purchases. (If a customer has made a purchase, there must be an invoice record for that customer.) • SELECT CUS_CODE FROM CUSTOMER WHERE CUS_AREACODE = '615' INTERSECT SELECT DISTINCT CUS_CODE FROM INVOICE; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Syntax Alternatives (continued) • For example, the following query returns the customer codes for all customers located in area code 615 minus the ones who have made purchases, leaving the customers in area code 615 who have not made purchases. • SELECT CUS_CODE FROM CUSTOMER WHERE CUS_AREACODE = '615' MINUS SELECT DISTINCT CUS_CODE FROM INVOICE; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Tue 18-6 SQL Join Operators Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Cross Join • Syntax: • SELECT column-list FROM table1 CROSS JOIN table2 • Returns the Cartesian product of table1 and table2(old style). EXAMPLE : SELECT* FROM GameScores CROSS JOIN Departments Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Natural Join Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
JOIN USING Clause Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
JOIN ON Clause Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Outer Joins • Returns not only matching rows, but also rows with unmatched attribute values for one table or both tables to be joined • Three types • Left • Right • Full Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Outer Joins (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Outer Joins (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Outer Joins (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Subqueries and Correlated Queries Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel
Correlated Subqueries (continued) Example (2): you want to know the vendor code and name of vendors for products having a quantity on hand that is less than double the minimum quantity Example (1): you want to know all customers who have placed an order lately Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel