1 / 133

Chapter 7

Chapter 7. Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel. In this chapter, you will learn:. The basic commands and functions of SQL

neveah
Télécharger la présentation

Chapter 7

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. Chapter 7 Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel

  2. In this chapter, you will learn: • The basic commands and functions of SQL • How to use SQL for data administration (to create tables, indexes, and views) • How to use SQL for data manipulation (to add, modify, delete, and retrieve data) • How to use SQL to query a database to extract useful information Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  3. Introduction to SQL • SQL functions fit into two broad categories: • Data definition language • SQL includes commands to: • Create database objects, such as tables, indexes, and views • Define access rights to those database objects • Data manipulation language • Includes commands to insert, update, delete, and retrieve data within database tables Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  4. Introduction to SQL (continued) • SQL is relatively easy to learn • Basic command set has vocabulary of less than 100 words • Nonprocedural language • American National Standards Institute (ANSI) prescribes a standard SQL • Several SQL dialects exist Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  5. Introduction to SQL (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  6. Introduction to SQL (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  7. Introduction to SQL (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  8. Data Definition Commands • Examine simple database model and database tables that will form basis for many SQL examples • Understand data environment Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  9. The Database Model Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  10. The Database Model (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  11. Creating the Database • Following two tasks must be completed: • Create database structure • Create tables that will hold end-user data • First task: • RDBMS creates physical files that will hold database • Tends to differ substantially from one RDBMS to another Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  12. The Database Schema • Authentication • Process through which DBMS verifies that only registered users are able to access database • Log on to RDBMS using user ID and password created by database administrator • Schema • Group of database objects—such as tables and indexes—that are related to each other Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  13. Data Types • Data type selection is usually dictated by nature of data and by intended use • Pay close attention to expected use of attributes for sorting and data retrieval purposes Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  14. Data Types (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  15. Creating Table Structures • Use one line per column (attribute) definition • Use spaces to line up attribute characteristics and constraints • Sql commands are capitalized • NOT NULL specification • UNIQUE specification Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  16. Creating Table Structures (continued) • Primary key attributes indicate both a NOT NULL and a UNIQUE specification • RDBMS will automatically enforce referential integrity for foreign keys • Command sequence ends with semicolon Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  17. SQL Constraints • NOT NULL constraint • Ensures that column does not accept nulls • UNIQUE constraint • Ensures that all values in column are unique • DEFAULT constraint • Assigns value to attribute when a new row is added to table • CHECK constraint • Validates data when attribute value is entered Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  18. Creating Table Structures (continued) • CREATE TABLE CUSTOMER(    CUS_CODE  NUMBER(7) PRIMARY KEY,  CUS_LNAME  VARCHAR2 (20),CUS_ZIP  CHAR (5), AGENT_CODE  NUMBER (3) DEFAULT 412); Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  19. Creating Table Structures (continued) CREATE TABLE AGENT( AGENT_CODE  NUMBER(3) PRIMARY KEY, AGENT_PHONE CHAR (10)); Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  20. Creating Table Structures (continued) CREATE TABLE Product( p_code CHAR(10), /*...*/ p_descript VARCHAR2(35), --... p_indate DATE, p_onhand SMALLINT, p_min SMALLINT, p_price NUMBER(8,2) NOT NULL, p_discount NUMBER(4,2), v_code INTEGER CONSTRAINT v_code_fk REFERENCES Vendor(v_code), CONSTRAINT p_code_pk PRIMARY KEY (p_code)); Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  21. Creating Table Structures (continued) CREATE TABLE Product( p_code CHAR(10) CONSTRAINT p_code_pk PRIMARY KEY, p_descript VARCHAR2(35), p_indate DATE, p_onhand SMALLINT, p_min SMALLINT, p_price NUMBER(8,2) NOT NULL, p_discount NUMBER(4,2), v_code INTEGER CONSTRAINT v_code_fk REFERENCES Vendor(v_code)); Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  22. Creating Table Structures (continued) CREATE TABLE Employee( ssn CHAR(10), salary NUMBER(9,2), title VARCHAR2(20), class NUMBER(1) constraint class_ck CHECK (class BETWEEN 1 AND 4), CONSTRAINT title_uk UNIQUE (title), CONSTRAINT ssn_salary_pk PRIMARY KEY (ssn, salary)); Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  23. SQL Indexes • When primary key is declared, DBMS automatically creates unique index • Often need additional indexes • Using CREATE INDEX command, SQL indexes can be created on basis of any selected attribute • Composite index • Index based on two or more attributes • Often used to prevent data duplication Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  24. SQL Indexes (continued) CREATE [UNIQUE] INDEX indexname ON tablename (column1 [, column2]) CREATE INDEX Emptest on Test (emp_num) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  25. SQL Indexes (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  26. Data Manipulation Commands • Adding table rows • Saving table changes • Listing table rows • Updating table rows • Restoring table contents • Deleting table rows • Inserting table rows with a select subquery Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  27. Adding Table Rows • INSERT • Used to enter data into table • Insert a row each time • Syntax: • INSERT INTO tablenameVALUES (value1, value2, … , valuen); Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  28. Adding Table Rows (continued) • When entering values, notice that: • Row contents are entered between parentheses • Character and date values are entered between apostrophes • Numerical entries are not enclosed in apostrophes • Attribute entries are separated by commas • A value is required for each column • Use NULL for unknown values Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  29. Adding Table Rows (continued) INSERT INTO Product VALUES (‘BRT-345’, ‘Titanium drill bit’, TO_DATE(’18-Oct-05’, ’DD-MON-YY’), 75, 10, 4.5, 0.06, NULL); or TO_DATE (’18/Oct/05’, ’DD/MON/YY’) or TO_DATE(’10/18/2005’, ‘MM/DD/YYYY’) or TO_DATE(‘October 18, 2005’, ‘Month DD, YYYY’) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  30. Saving Table Changes • Changes made to table contents are not physically saved on disk until, one of the following occurs: • Database is closed • Program is closed • COMMIT command is used • Syntax: • COMMIT [WORK]; • Will permanently save any changes made to any table in the database Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  31. Listing Table Rows • SELECT • Used to list contents of table • Syntax: • SELECT columnlistFROM tablename; • Columnlist represents one or more attributes, separated by commas • Asterisk can be used as wildcard character to list all attributes Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  32. Listing Table Rows (continued) SELECT p_code, p_descript, p_indate, p_qoh, p_min, p_price, p_discount, v_code FROM Product; SELECT * FROM Product; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  33. Listing Table Rows (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  34. Updating Table Rows • UPDATE • Modify data in a table • Syntax: • UPDATE tablenameSET columnname = expression [, columname = expression][WHERE conditionlist]; • If more than one attribute is to be updated in row, separate corrections with commas Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  35. Updating Table Rows (continued) UPDATE Product SET p_indate = ’18-Jan-2006’, p_price = 7.6 WHERE p_code = ‘13-Q2/P2’; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  36. Restoring Table Contents • ROLLBACK • Used to restore database to its previous condition • Only applicable if COMMIT command has not been used to permanently store changes in database • Syntax: • ROLLBACK; • COMMIT and ROLLBACK only work with data manipulation commands that are used to add, modify, or delete table rows Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  37. Deleting Table Rows • DELETE • Deletes a table row • Syntax: • DELETE FROM tablename[WHERE conditionlist ]; • WHERE condition is optional • If WHERE condition is not specified, all rows from specified table will be deleted Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  38. Deleting Table Rows (continued) DELETE FROM Product WHERE p_code = ‘BRT-345’; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  39. Inserting Table Rows with a Select Subquery • INSERT • Inserts multiple rows from another table (source) • Uses SELECT subquery • Query that is embedded (or nested) inside another query • Executed first • Syntax: • INSERT INTO tablename SELECT columnlist FROM tablename; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  40. Inserting Table Rows with a Select Subquery (continued) INSERT INTO p SELECT * from Product; Employee(name, address, emp_num, salary) Emp1(addr, sal, empno) INSERT INTO Emp1 SELECT address, salary, emp_num FROM Employee; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  41. Inserting Table Rows with a Select Subquery (continued) • INSERT INTO Emp1 SELECT address, emp_num, salary FROM Employee; (The order of attributes matter in the above) • INSERT INTO Emp1 SELECT * FROM Employee; (The number of attributes are not the same!) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  42. Selecting Rows with Conditional Restrictions • Select partial table contents by placing restrictions on rows to be included in output • Add conditional restrictions to SELECT statement, using WHERE clause • Syntax: • SELECT columnlistFROM tablelist[ WHERE conditionlist ] ; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  43. Selecting Rows with Conditional Restrictions (continued) SELECT p_descript, p_indate, p_price, v_code FROM Product WHERE v_code = 21344; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  44. Selecting Rows with Conditional Restrictions (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  45. Selecting Rows with Conditional Restrictions (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  46. Selecting Rows with Conditional Restrictions (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  47. Selecting Rows with Conditional Restrictions (continued) SELECT p_descript, p_indate, p_price, v_code FROM Product WHERE v_code <>21344; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  48. Selecting Rows with Conditional Restrictions (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  49. Selecting Rows with Conditional Restrictions (continued) SELECT p_descript, p_qoh, p_min, p_price FROM Product WHERE p_price <= 10; Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

  50. Selecting Rows with Conditional Restrictions (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel

More Related