1 / 109

Unit 5 SQL: Data Manipulation Language For Relational Databases

Unit 5 SQL: Data Manipulation Language For Relational Databases. DML in Context. SQL. We study key features of ANSI SQL standard for relational query/schema languages (more about schemas, that is specifying the structure of the database in the next unit) History: SEQUEL by IBM

lysa
Download Presentation

Unit 5 SQL: Data Manipulation Language For Relational Databases

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. Unit 5 SQL: Data Manipulation LanguageFor Relational Databases

  2. DML in Context

  3. SQL • We study key features of ANSI SQL standard for relational query/schema languages (more about schemas, that is specifying the structure of the database in the next unit) • History: • SEQUEL by IBM Implemented in a product (DB2) • Standard’s development • SQL 86 • … • SQL 2011 • Many commercial implementations “close” to one of the standards • With some parts missing and some parts added • Very powerful but implemented by a committee that agreed to practically everything proposed so many redundancies • At its core relational algebra, which we have learned, with many additions

  4. Our Focus • We will focus on • As precise as feasible (here) description of the semantics of various operations: some of them are somewhat surprising • Construction of simple and complex queries, to show the full power of SQL • More concepts than you can get from any manual • We will not focus on • Any specific system • What you can get from a manual • The interaction through other languages with an SQL-based Database System • Most of the queries were run on Microsoft Access, which allowed easy production of “snapshots” • Some of them were run on Oracle too

  5. Key DifferencesBetween Relational Algebra And SQL • SQL data model is a multisetnot a set; still rows in tables (we sometimes continue calling them relations) • Still no order among rows, (e.g., no such thing as the 1st row) • We can count the number of times a particular row appears in the table (if we want to) • We can remove/not remove duplicates as we specify (most of the time anyway) • There are some operators that specifically pay attention to duplicates • We mustknow, for each SQL operation, whether (and how) it removes duplicates; luckily this is easy, as we will see • A multiset is “between” a set and a list • In a list, for each position we can specify which element is there; therefore we have • Multiplicity • Order (e.g., we know what is the 1st element)

  6. Key DifferencesBetween Relational Algebra And SQL • SQL contains all the power of relational algebra plus much more • Many redundant operators (relational algebra had only one: intersection, which can be computed using difference) • SQL provides statistical operators, such as AVG (average), which are very important and useful in practice • Can be performed on subsets of rows; e.g. average salary per company branch

  7. Key DifferencesBetween Relational Algebra And SQL • Every domain is “enhanced” with a special element: NULL • Very strange semantics for handling these elements • But perhaps unavoidably so • We need to, and will, understand them • “Pretty printing” of output: sorting etc. • Not difficult, but useful; we will not focus on this • Operations for • Inserting • Deleting • Changing/updating (sometimes not easily reducible to deleting and inserting) • Additional capabilities and tools

  8. More About Multisets • In a relational algebra, the basic object was a set • Order of elements cannot be specified • The multiplicity (how many times an element appearing in the set appears in it) cannot be specified; i.e., cannot say that “a” appears 3 times • In SQL the basic element is a multiset • Order of elements cannot be specified • The multiplicity (how many times an element appearing in the set appears in it) can be specified; i.e., can say that “a” appears 3 times

  9. More About Multisets • The following two tables are equal, because: • They contain the same rows with the same multiplicity • The order of rows does not matter • The order of columns does not matter, as they are labeled

  10. More About Multisets • The following two tables are not equal, because: • There is a row that appears with different multiplicities in the two tables • Row (2,20) appears twice in R but only once in S • But as sets they would be equal!

  11. Relational Algebra vs. SQL • We did notsay that sets contain each element only once • We said that we cannot specify (and do not care) how many times an element appears in a set • It only matters whether it appears (at least once) or not (at all) • Therefore, all that we have learned about relational algebra operations immediately applies to corresponding operations in SQL, which does care about duplicates • That’s why it was important not to say that an element in a set appears exactly once when we studied relational algebra • This was a subtle, but an important, point

  12. The Most Common Query Format(We Have Seen This Before) • As we have seen, a very common expression in SQL is: SELECT A1, A2, ...FROM R1, R2, ... WHERE F; • Logical order of execution • FROM: Single table or Cartesian product • WHERE (optional): choose rows by condition (predicate) • SELECT: choose columns by listing • All three operations keep (do not remove) duplicates (unless specifically requested not to; more later) • We work up to more and more complicated examples, starting with what we know from relational algebra • A SELECT statement is also called a join: tables R1, R2, … are “joined” when condition F holds

  13. Set Operations(Not All Of Them Always Implemented) • UNION, duplicates are removed:SELECT * FROM RUNIONSELECT * FROM S;

  14. Set Operations(Not All Of Them Always Implemented) • MINUS, duplicates are removed:SELECT * FROM RMINUSSELECT * FROM S;

  15. Set Operations(Not All Of Them Always Implemented) • INTERSECT, duplicates are removed:SELECT * FROM RINTERSECTSELECT * FROM S;

  16. Set Operations(Not All Of Them Always Implemented) • UNION ALL, duplicates are not removed:SELECT * FROM RUNION ALLSELECT * FROM S; • An element appears with the cardinality that is the sum of its cardinalities in R and S

  17. Set Operations(Not All Of Them Always Implemented) • MINUS ALL, duplicates are not removed:SELECT * FROM RMINUS ALLSELECT * FROM S; • An element appears with the cardinality that is max(0, cardinality in R − cardinality in S)

  18. Set Operations (Not All Of Them Always Implemented) • INTERSECT ALL, duplicates are not removed:SELECT * FROM RINTERSECT ALLSELECT * FROM S; • An element appears with the cardinality that is min(cardinality in R, cardinality in S)

  19. Our Sample Database • We will describe the language by means of a toy database dealing with orders for a single product that are supplied to customers by plants • It was chosen so that • It is small • Sufficiently rich to learn SQL from • Therefore a little artificial, but this does not matter • Sample database: PlantCustomerInvoice.mdb will be placed in Microsoft Access Database Examples for this unit

  20. The Tables of Our Database • Plant(P,Pname,Pcity,Profit) • This table describes the plants, identified by P. Each plant has a Pname, is in a Pcity, and makes certain Profit • Customer(C,Cname,Ccity,P) • This table describes the customers, identified by C. Each customer has a Cname and lives in a Ccity. Note that each customer is assigned to a specific P, where the orders for the customers are fulfilled. This P is a foreign key referencing Plant • Invoice(I,Amt,Idate,C) • This table describes the orders, identified by I. Each order is for some Amt (amount), is on a specific Idate, and placed by some C. This C is a foreign key referencing Customer. C must not be NULL Could not use the name “Date,” as it is a reserved keyword

  21. The Tables of Our Database

  22. Our Instance

  23. Queries On A Single Table • Find Cname for all customers who are located in Boston: SELECT CnameFROM CustomerWHERE Ccity = 'Boston';

  24. Queries On A Single Table • Find full data on every customer located in Boston: SELECT *FROM CustomerWHERE Ccity = 'Boston'; • The asterisk, *, stands for the sequence of all the columns, in this case, C, Cname, Ccity, P

  25. Queries On A Single Table • Find Pname for all plants that are located in Boston: SELECT PnameFROM PlantWHERE Pcity = 'Boston'; • Note that duplicates were not removed

  26. Queries on a Single Table (Continued) • Find every C who is supplied from a plant in the same city they are in and where the plant’s profit is at least 50000 SELECT CFROM Plant, CustomerWHERE Plant.Pcity = Customer.CcityAND Plant.P = Customer.PAND Profit >= 50000; • Note that we need to “consult” two tables even though the answer is taken from a single table

  27. Queries On Two TablesAnd Renaming Columns and Tables • We want to produce a table with the schema (Bigger,Smaller), where bigger and smaller are two P located in the same city and the Profit of the Bigger is bigger than that of the Smaller • Two (logical) copies of Plant are produced, the first one we name First and the second one we name Second. • The attributes of the result were renamed, so the columns of the answer are Bigger and Smaller SELECT First.P AS Bigger, Second.P AS SmallerFROM Plant AS First, Plant AS SecondWHERE First.City = Second.City AND First.Profit > Second.Profit; • In some implementations AS cannot be used for renaming of tables, and only space can be used (see next)

  28. Queries On Two TablesAnd Renaming Columns and Tables • We want to produce a table with the schema (Bigger,Smaller), where bigger and smaller are two P located in the same city and the Profit of the Bigger is bigger than that of the Smaller SELECT First.P Bigger, Second.P SmallerFROM Plant First, Plant SecondWHERE First.City = Second.City AND First.Profit > Second.Profit; • This example shows how the space character is used as a renaming operator (does not work in Access)

  29. A Note About NULLs • We will discuss NULLs later, but we can note something now • There are two plants in Chicago, one of them has profit of NULL • When the comparison for these two plants is attempted, the following two values need to be compared: • $51,000.00 • NULL • This comparison “cannot be done”

  30. Division • We next study a new, important type of query, which could have been done using relational algebra (like almost everything we have done so far) • This is probably the most complex query we will discuss, so we deferred it until now • It is very important, but due to its complexity frequently not covered in textbooks • Its building blocks (and concepts behind them) are important too • So we will go over it carefully

  31. New Example Database Schema • We will first cover the material using a new additional example database suggested by Robert Soule • Then we will review a part using our running example database • We will have two relations • Took(Person,Course). This relation records which Person Took which Course. For simplicity, we assume that every Person Took at least one Course. • Required(Course). This relation records which Course(s) are required for graduation. • A Person can take both Required and non-Required Course(s)

  32. An Example Instance • We will “run” some queries on the database and see the output • We will remove duplicates to save space • Later we will see actual Microsoft Access queries on our running-example database

  33. Asking about “Some”, “None”, “All” • List all Person(s) who Took some (that is, at least one) Courses that are Required (and maybe also Took Courses that are not Required); these Person(s) are making progress • Answer: Marsha, Vijay, Dong • List all Person(s) who Took none (that is, zero) of the Course(s) that are Required (but maybe Took Courses that are not Required); these Person(s) will be dismissed • Answer: Chris • List all Person(s) who Took all of the Course(s) that are Required (but maybe also Took Course(s) that are not Required); these Person(s) can graduate • Answer: Marsha, Vijay

  34. Asking About Some • SELECT PersonFROM Took, RequiredWHERE Took.Course = Required.Course; • Answer

  35. Asking About None • SELECT PersonFROM Took, RequiredWHERE Took.Course <> Required.Course; • (“<>” means “not equal”) • Answer (wrong)

  36. Asking About None • SELECT PersonFROM TookMINUSSELECT PersonFROM Took, RequiredWHERE Took.Course = Required.Course; • Answer

  37. Asking About All • More complicated • Informal roadmap • Find all Person(s): (AllPersons) • Find all records that need to exist for them to graduate: (AllPersons,Courses) • Find all records of Course(s) that are Required but not yet Took(ed), that is “missing”: (AllPersons,Courses) – Took • Find all Person(s) who are missing a Required Course: (MissingCourse) • Find all Person(s) who are not missing a Required Course: (AllPersons) – (MissingCourse)

  38. Helpful Venn Diagram

  39. Find All (Person) • TempA:SELECT PersonFROM Took;

  40. Find All (Person,Required Course) • TempB:SELECT Person, CourseFROM TempA, Required;

  41. Find All (Person, Required Course Not Taken) • TempC:SELECT *FROM tempBMINUSSELECT *FROM Took;

  42. Find All (Person Who Is Missing A Required Course) • TempD:SELECT PersonFROM TempC:

  43. Find All (Person Who Took All Required Courses) • Answer:SELECT *FROM TempAMINUSSELECT *FROM TempD:

  44. Division • Formally, we just computed relational algebra division Took / RequiredWe do not need to discuss this notation any further, just be aware that’s what we did • Important to understand the ideas • Now back to our running example database

  45. Asking About Some Versus Asking About All • We first compute two tables • CnameInCcity(Ccity,Cname) This table lists all the “valid” tuples of Ccity,Cname; it is convenient for us to list the city first • CnameInChicago(Cname) This table lists the names of the customers located in Chicago. • We then want to specify two queries • The first one is expressible by the existential quantifier (more about it later, if there is time) • The second one is expressible by the universal quantifier (more about it later, if there is time)

  46. CnameInCcity • SELECT Ccity, Cname INTO CnameInCcityFROM Customer; • This variant of the SELECT statement uses INTO, creates a new table, here CnameInCcity and populates it with the result of the query

  47. CnameInChicago • SELECT Customer.Cname INTO CnameInChicagoFROM CustomerWHERE Ccity='Chicago';

  48. Our Tables • I have reproduced them, so they are larger and we can see them clearly

  49. Asking About Some Vs. Asking About All • In the following examples, I removed duplicates to save space • In SQL duplicates will not be removed, but it will not change the meaning of the result: these are still the right answers • We will see this in Access snapshots

  50. Asking About Some And About All • List all cities, the set of whose Cnames contains at least one Cname that is (also) in Chicago • This will be easy • List all cities, the set of whose Cnames contains at least all the Cnames that are (also) in Chicago • This will be harder

More Related