sql structured query language
play

SQL Structured Query Language Standard for relational db systems - PowerPoint PPT Presentation

SQL Structured Query Language Standard for relational db systems History: Developed at IBM in late 70s First standard: SQL-86 Second standard: SQL-92 Third standard: SQL-99 or SQL3, well over 1000 pages! The nice things


  1. SQL “Structured Query Language” • Standard for relational db systems • History: Developed at IBM in late 70s First standard: SQL-86 Second standard: SQL-92 Third standard: SQL-99 or SQL3, well over 1000 pages! “The nice things about standards is that you have so many to choose from” -- Andres S. Tannenbaum 1

  2. SQL: Data Definition Language Create table • Syntax: CREATE TABLE <name> (<att 1 > type 1 , <att 2 > type 2 , …, <att n > type n ) • Example CREATE TABLE movies (title char(20), director char(10), actor char(10)) CREATE TABLE schedule (theater char(10), title char(20)) Delete table • Syntax DROP TABLE <NAME> • Example DROP TABLE schedule 2

  3. Other DDL commands • Add a new attribute to an existing table possible to initialize with default value: otherwise null ALTER TABLE schedule ADD COLUMN time int DEFAULT 0 • Drop attribute from a table tuples are truncated: “projection” • Define constraints on tables: keys, foreign keys,… will see later 3

  4. SQL Queries: The Basic From • Basic form Find titles of currently playing movies SELECT Title SELECT a1 , …, aN FROM Schedule FROM R1 , …, RM Find the titles of all movies by “Berto” WHERE condition SELECT Title FROM Movie • WHERE clause is optional WHERE Director=“Berto” Find the titles and the directors of all • When more than one relation of currently playing movies the FROM has an attribute named A, we refer to a specific A attribute as <RelationName>.A SELECT Movie.Title, Director FROM Movie, Schedule WHERE Movie.Title=Schedule.Title 4

  5. SQL Queries: Tuple variables • Use the same relation more than once in the FROM clause • Example: find actors who are also directors SELECT t.Actor FROM Movie t, Movie s WHERE t.Actor = s.Director 5

  6. SQL Queries: Nesting Examples: • The WHERE clause can contain predicates of the form find directors of current movies – attr/value IN <SQL query> – attr/value NOT IN SELECT director FROM Movie <SQL query> WHERE title IN • The IN predicate is satisfied if the attr or value appears in the (SELECT title result of the nested FROM schedule) <SQL query> The nested query finds currently playing movies 6

  7. More examples Find actors playing in some movie by Bertolucci SELECT actor FROM Movie WHERE title IN (SELECT title FROM Movie WHERE director = “Bertolucci”) The nested query finds the titles of movies by Bertolucci Queries involving nesting but no negation can always be un-nested, unlike queries with nesting and negation 7

  8. Typical use:“find objects that always satisfy property X”, e.g., find actors playing in every movie by “Berto” SQL’s way of saying this: SELECT Actor FROM Movie WHERE Actor NOT IN find the actors for which (SELECT m2.Actor there is no movie by FROM Movie m1, Movie m2, Bertolucci in which WHERE m1.Director=“Berto” they do not act AND m2.Actor NOT IN (SELECT Actor OR equivalently: FROM Movie WHERE Title=m1.Title)) find the actors not among the actors for which there is some movie by Bertolucci The shaded query finds actors for which there in which they do not act is some movie by “Berto” in which they do not act The top lines complement the shaded part 8

  9. SQL:Union, Intersection, Difference Find all actors or directors (SELECT Actor FROM Movie) • Union UNION – <SQL query 1> UNION (SELECT Director <SQL query 2> FROM Movie) • Intersection – <SQL query 1> INTERSECT <SQL query 2> • Difference Find all actors who are not directors – <SQL query 1> MINUS (SELECT Actor <SQL query 2> FROM Movie) MINUS (SELECT Director FROM Movie) 9

  10. Nested Queries: Existential and Universal Quantification Find directors of currently playing movies SELECT Director FROM Movie • A op ANY <nested query> is WHERE Title = ANY satisfied if there is a value X in SELECT Title the result of the <nested query> FROM Schedule and the condition A op X is satisfied – ANY aka SOME • A op ALL <nested query> is satisfied if for every value X in the Find the employees with the highest salary result of the <nested query> the SELECT Name condition A op X is satisfied FROM Employee WHERE Salary >= ALL SELECT Salary FROM Employee 10

  11. Nested Queries: Set Comparison Find actors playing in every movie by “Bertolucci” SELECT m1.Actor • <nested query 1> CONTAINS FROM Movie m1 <nested query 2> WHERE (SELECT Title FROM Movie WHERE Actor = m1.Actor) CONTAINS (SELECT Title FROM Movie WHERE Director = “Berto”) 11

  12. Views • Create permanent or temporary CREATE VIEW tables holding result of a query Berto-movies (movie, actor) AS SELECT title, actor • Syntax: FROM movie CREATE VIEW <TABLE> WHERE director = “Bertolucci” AS <query> • Once defined, views can be SELECT movie used in queries like any other FROM Berto-movies relation WHERE actor = “Winger” • Their content is automatically updated when database changes 12

  13. Views can simplify nested queries Example find actors playing in every movie by “Berto”: SELECT Actor FROM Movie WHERE Actor NOT IN (SELECT m2.Actor FROM Movie m1, Movie m2, WHERE m1.Director=“Berto” AND m2.Actor NOT IN (SELECT Actor FROM Movie WHERE Title=m1.Title)) The shaded query finds actors NOT playing in some movie by “Berto” 13

  14. Same query using views CREATE VIEW Berto-Movies AS SELECT title FROM Movie WHERE director = “Bertoucci” ; CREATE VIEW Not-All-Berto AS SELECT m.actor FROM Movies m, Berto-Movies WHERE Berto-Movies.title NOT IN (SELECT title FROM Movies WHERE actor = m.actor); CREATE VIEW Answer AS SELECT actor FROM Movies WHERE actor NOT IN (SELECT * FROM Not-All-Berto) 14

  15. SQL Queries: Aggregation and Grouping • Aggregate functions: AVG, Employee COUNT, MIN, MAX, SUM, ... Name Dept Salary (user defined functions) Joe Toys 45 Nick PCs 50 • Group-by Jim Toys 35 Jack PCs 40 Find average salary of all employees SELECT Avg(Salary) AS AvgSal FROM Employee AvgSal 42.5 Find the average salary for each department SELECT Dept, Avg(Salary) AS AvgSal Dept AvgSal Toys 40 FROM Employee PCs 45 GROUP-BY Dept 15

  16. SQL Grouping: Conditions that Apply on Groups HAVING clause • Find the average salary of for For each movie having at least 100 actors, each department that has more Find the number of theaters showing the movie than 1 employee SELECT m.Title, COUNT(s.Theater) AS number SELECT Dept, AvgSal= Avg(Salary) FROM Schedule s, Movie m FROM Employee WHERE s.Title = m.Title GROUP-BY Dept GROUP BY m.Title HAVING COUNT(Name)>1 HAVING COUNT(DISTINCT m.Actor) > 100 Aggregate is taken over pairs <s,m> with same Title 16

  17. SQL: More Bells and Whistles ... Retrieve all movie attributes of currently • Select all attributes playing movies SELECT Movie.* using * FROM Movie, Schedule WHERE Movie.Title=Schedule.Title Retrieve all movies where the title starts with “Ta” SELECT * FROM Movie • Pattern matching WHERE Title LIKE “Ta%” conditions Forgot if “Polanski” is spelled – <attr> LIKE <pattern> with “i” or “y”: SELECT * FROM Movie WHERE Director LIKE “Polansk_” 17

  18. …and a Few “Dirty” Points • Duplicate elimination must be Title explicitly requested SELECT Title Tango – SELECT DISTINCT … FROM Movie Tango FROM … WHERE … Tango • Null values – all comparisons involving Title SELECT DISTINCT Title NULL are unknown by Tango FROM Movie definition – all aggregation operations, Title Director Actor except count , ignore NULL Wild Lynch Winger values Sky Berto Winger Reds NULL Beatty Tango Berto Brando Tango Berto Winger Tango Berto NULL 18

  19. SQL as a Data Manipulation Language: Insertions • inserting tuples INSERT INTO Movie – INSERT INTO R VALUES (“Brave”, “Gibson”, “Gibson”); VALUES ( v1,…,vk ); • some values may be left INSERT INTO Movie(Title,Director) NULL VALUES (“Brave”, “Gibson”); • use results of queries for INSERT INTO BertoMovie insertion SELECT * FROM Movie WHERE Director = “Berto” – INSERT INTO R SELECT … FROM … WHERE 19

  20. SQL as a Data Manipulation Language: Updates and Deletions Deletion basic form: delete every • Delete the movies that are not currently playing tuple that satisfies <cond> DELETE FROM Movie – DELETE FROM R WHERE WHERE Title NOT IN SELECT Title <cond> FROM Schedule • Update basic form: update every tuple that satisfies <cond> in the Change all “Berto” entries to “Bertolucci” way specified by the SET clause UPDATE Movie – UPDATE R SET Director=“Bertolucci” SET A1=<exp1>, WHERE Director=“Berto” … Ak=<expk> Increase all salaries in the Toys dept by 10% WHERE <cond> UPDATE Employee SET Salary = 1.1 * Salary WHERE Dept = “Toys” The “rich get richer” exercise: Increase by 10% the salary of the employee 20 with the highest salary

  21. QBE • Query-By-Example – provides a visual interface for queries and updates • Examples: movie database queries – query 1 schedule theater title P. • P. : “print value” – query 2 movie title director actor P. Berto 21

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend