1 / 26

CS411 Database Systems

CS411 Database Systems. Kazuhiro Minami. 06: SQL. Quiz: T/F questions. Subclasses in E/R model have key attributes. In Relational algebra, natural join is one of the five basic operations. A relation in the relational model may have multiple keys.

meghan
Download Presentation

CS411 Database Systems

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS411Database Systems Kazuhiro Minami 06: SQL

  2. Quiz: T/F questions Subclasses in E/R model have key attributes. In Relational algebra, natural join is one of the five basic operations. A relation in the relational model may have multiple keys. If there is no functional dependency in relation R, R is in BCNF. If relation R is in the fourth normal form, R is also in BCNF. In SQL, if one of the relations in the FROM clause is empty, the result relation is always empty. The union operator in SQL does not remove duplicate tuples by default. It is possible to take the union of two relations with different schema names.

  3. Join Expressions

  4. Join Expressions • SQL provides a number of expression forms that act like varieties of join in relational algebra. • But using bag semantics, not set semantics. • These expressions can be stand-alone queries or used in place of relations in a FROM clause.

  5. Products and Natural Joins • Cartesian product is obtained by: R CROSS JOIN S; • Natural join is obtained by: R NATURAL JOIN S; • Example: Likes NATURAL JOIN Serves; • Relations can be parenthesized subexpressions, as well.

  6. Theta Join • R JOIN S ON <condition> is a theta-join, using <condition> for selection. • Example: using Drinkers(name, addr) and Frequents(drinker, bar): Drinkers JOIN Frequents ON name = drinker; gives us all (d, a, d, b) quadruples such that drinker d lives at address a and frequents bar b.

  7. Rewrite the following expressions using select-from-where: 2) Drinkers JOIN Frequents ON name = drinker; 1) R CROSS JOIN S; SELECT * FROM Drinkers, Frequents WHERE name = drinker; SELECT * FROM R, S;

  8. Grouping and Aggregation

  9. Aggregations SUM, AVG, COUNT, MIN, and MAX can be applied to a column in a SELECT clause to produce that aggregation on the column. Also, COUNT(*) counts the number of tuples.

  10. Example: Aggregation From Sells(bar, beer, price), find the average price of Bud: SELECT AVG(price) FROM Sells WHERE beer = ‘Bud’;

  11. Eliminating Duplicates in an Aggregation • DISTINCT inside an aggregation causes duplicates to be eliminated before the aggregation. • Example: find the number of different prices charged for Bud: SELECT COUNT(DISTINCT price) FROM Sells WHERE beer = ‘Bud’;

  12. NULLs are ignored in aggregations of a column The number of bars that sell Bud The number of bars that sell Bud at a non-null price If there are no non-NULL values in a column, then the result of the aggregation is NULL SELECT count(*) FROM Sells WHERE beer = ‘Bud’; SELECT count(price) FROM Sells WHERE beer = ‘Bud’;

  13. Grouping We may follow a SELECT-FROM-WHERE expression by GROUP BY and a list of attributes. The relation that results from the SELECT-FROM-WHERE is partitioned according to the values of all those attributes, and any aggregation is applied only within each group.

  14. Example: Grouping Sells(bar, beer, price) Q: find the average price for each beer: SELECT beer, AVG(price) FROM Sells GROUP BY beer;

  15. Example: Grouping SELECT drinker, AVG(price) FROM Frequents, Sells WHERE Sells.bar = Frequents.bar AND beer = ‘Bud’ GROUP BY drinker; Compute drinker-bar- price of Bud tuples first, then group by drinker. Frequents(drinker, bar),Sells(bar, beer, price) Q: find for each drinker the average price of Bud at the bars they frequent:

  16. Restriction on SELECT Lists With Aggregation • If any aggregation is used, then each element of the SELECT list must be either: • Aggregated, or • An attribute on the GROUP BY list.

  17. Illegal Query Example You might think you could find the bar that sells Bud the cheapest by: SELECT bar, MIN(price) FROM Sells WHERE beer = ‘Bud’; But this query is illegal in SQL. • Why? Note bar is neither aggregated nor on the GROUP BY list.

  18. HAVING Clauses HAVING <condition> may follow a GROUP BY clause. If so, the condition applies to each group, and groups not satisfying the condition are eliminated.

  19. Requirements on HAVING Conditions • These conditions may refer to any relation or tuple-variable in the FROM clause. • They may refer to attributes of those relations, as long as the attribute makes sense within a group; i.e., it is either: • A grouping attribute, or • Aggregated.

  20. Example: HAVING Sells(bar, beer, price) Q: Find the average price of those beers that are served in at least three bars

  21. Solution Beer groups with at least 3 non-NULL bars and also beer groups where the manufacturer is Pete’s. SELECT beer, AVG(price) FROM Sells GROUP BY beer HAVING COUNT(bar) >= 3

  22. General form of Grouping and Aggregation SELECT S FROM R1,…,Rn WHERE C1 GROUP BY a1,…,ak HAVING C2 S = may contain attributes a1,…,ak and/or any aggregates but NO OTHER ATTRIBUTES C1 = is any condition on the attributes in R1,…,Rn C2 = is any condition on aggregate expressions or grouping attributes

  23. General form of Grouping and Aggregation SELECT S FROM R1,…,Rn WHERE C1 GROUP BY a1,…,ak HAVING C2 Evaluation steps: • Compute the FROM-WHERE part, obtain a table with all attributes in R1,…,Rn • Group by the attributes a1,…,ak • Compute the aggregates in C2 and keep only groups satisfying C2 • Compute aggregates in S and return the result

  24. Example • From Sells(bar, beer, price), find the average price for each beer that is sold by more than one bar in Champaign: • SELECT beer, AVG(price) • FROM Sells • Where address = ‘Champaign’ • GROUP BY beer • Having COUNT(bar) > 1

  25. Address = ‘Champaign’ Example bar address beer price Group by “beer” Smith’s Champaign Bud $2 Smith’s Champaign Kirin $2 J’s bar Urbana Bud $4 K’s bar Champaign Bud $3 Smith’s Champaign Bud $2 Smith’s Champaign Kirin $2 K’s bar Champaign Bud $3 1 2 Smith’s Champaign Bud $2 K’s bar Champaign Bud $3 Smith’s Champaign Kirin $2 COUNT(bar) > 1 AVG(price) 3 4 Smith’s Champaign Bud $2 K’s bar Champaign Bud $3 Bud $2.50

  26. Online bookstore: Find gold customers Book(isbn, title, publisher, price) Author(assn, aname, isbn) Customer(cid, cname, state, city, zipcode) Buy(tid, cid, isbn, year, month, day) Q3: Make a list of the names of customers who live in Illinois and spent more than $5,000 in year 2008.

More Related