Chapter 4. Basic SQL. SQL Data Definition and Data Types. Basic SQL. SQL language SQL. Terminology: CREATE statement

Similar documents
Chapter 4. Basic SQL. Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe

Slides by: Ms. Shree Jaswal

CSIE30600 Database Systems Basic SQL 2. Outline

Outline. Textbook Chapter 6. Note 1. CSIE30600/CSIEB0290 Database Systems Basic SQL 2

EGCI 321: Database Systems. Dr. Tanasanee Phienthrakul

Introduction to SQL. ECE 650 Systems Programming & Engineering Duke University, Spring 2018

Basic SQL. Dr Fawaz Alarfaj. ACKNOWLEDGEMENT Slides are adopted from: Elmasri & Navathe, Fundamentals of Database Systems MySQL Documentation

COGS 121 HCI Programming Studio. Week 03 - Tech Lecture

ECE 650 Systems Programming & Engineering. Spring 2018

Chapter 8 SQL-99: Schema Definition, Basic Constraints, and Queries

Chapter 8. Joined Relations. Joined Relations. SQL-99: Schema Definition, Basic Constraints, and Queries

BASIC SQL CHAPTER 4 (6/E) CHAPTER 8 (5/E)

SQL-99: Schema Definition, Basic Constraints, and Queries. Create, drop, alter Features Added in SQL2 and SQL-99

Basic SQL. Basic SQL. Basic SQL

SQL. Copyright 2013 Ramez Elmasri and Shamkant B. Navathe

SQL STRUCTURED QUERY LANGUAGE

BASIC SQL CHAPTER 4 (6/E) CHAPTER 8 (5/E)

COSC344 Database Theory and Applications. Lecture 6 SQL Data Manipulation Language (1)

SQL (Structured Query Language) Truong Tuan Anh CSE-HCMUT

SQL (Structured Query Language) Truong Tuan Anh CSE-HCMUT

Structured Query Language (SQL)

CS 338 Basic SQL Part II

Database design process

COSC344 Database Theory and Applications. Lecture 5 SQL - Data Definition Language. COSC344 Lecture 5 1

Ref1 for STUDENT RECORD DB: Ref2 for COMPANY DB:

Basic SQL II. Dr Fawaz Alarfaj. ACKNOWLEDGEMENT Slides are adopted from: Elmasri & Navathe, Fundamentals of Database Systems MySQL Documentation

Overview Relational data model

SQL Introduction. CS 377: Database Systems

Database Technology. Topic 3: SQL. Olaf Hartig.

Chapter 3: Introduction to SQL. Chapter 3: Introduction to SQL

CSEN 501 CSEN501 - Databases I

Chapter 3: Introduction to SQL

Principles of Data Management

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe

SQL: Concepts. Todd Bacastow IST 210: Organization of Data 2/17/ IST 210

Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification

Data Definition Language (DDL)

Database Technology. Topic 2: Relational Databases and SQL. Olaf Hartig.

QQ Group

SQL: A COMMERCIAL DATABASE LANGUAGE. Complex Constraints

A taxonomy of SQL queries Learning Plan

More SQL: Complex Queries, Triggers, Views, and Schema Modification

Chapter 3: Introduction to SQL

Lab # 4. Data Definition Language (DDL)

SQL: A COMMERCIAL DATABASE LANGUAGE. Data Change Statements,

The SQL data-definition language (DDL) allows defining :

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 7 Introduction to Structured Query Language (SQL)

D B M G. SQL language: basics. Managing tables. Creating a table Modifying table structure Deleting a table The data dictionary Data integrity

COSC 304 Introduction to Database Systems SQL DDL. Dr. Ramon Lawrence University of British Columbia Okanagan

The SQL database language Parts of the SQL language

DATA AND SCHEMA MODIFICATIONS CHAPTERS 4,5 (6/E) CHAPTER 8 (5/E)

CS 348 Introduction to Database Management Assignment 2

Simple SQL Queries (contd.)

SQL Structured Query Language Introduction

SQL- Updates, Asser0ons and Views

More SQL: Complex Queries, Triggers, Views, and Schema Modification

DATABASE DESIGN I - 1DL300

Database System Concepts, 5th Ed.! Silberschatz, Korth and Sudarshan See for conditions on re-use "

DATABASE TECHNOLOGY - 1MB025

SQL DATA DEFINITION LANGUAGE

SQL DATA DEFINITION LANGUAGE

Oracle Database 10g: Introduction to SQL

Chapter 9: Working with MySQL

SQL: Data Definition Language

DATABASE TECHNOLOGY - 1MB025

SQL DATA DEFINITION LANGUAGE

DATABASTEKNIK - 1DL116

Basic Structure Set Operations Aggregate Functions Null Values Nested Subqueries Derived Relations Views Modification of the Database Data Definition

ECE 650 Systems Programming & Engineering. Spring 2018

Lecture 3 SQL. Shuigeng Zhou. September 23, 2008 School of Computer Science Fudan University

CS2300: File Structures and Introduction to Database Systems

COSC344 Database Theory and Applications. σ a= c (P) S. Lecture 4 Relational algebra. π A, P X Q. COSC344 Lecture 4 1

SQL Data Definition and Data Manipulation Languages (DDL and DML)

SQL: Advanced Queries, Assertions, Triggers, and Views. Copyright 2012 Ramez Elmasri and Shamkant B. Navathe

DBMS LAB SESSION PAVANKUMAR MP

SQL functions fit into two broad categories: Data definition language Data manipulation language

COSC Assignment 2

DATABASE TECHNOLOGY. Spring An introduction to database systems

SQL. Lecture 4 SQL. Basic Structure. The select Clause. The select Clause (Cont.) The select Clause (Cont.) Basic Structure.

WHAT IS SQL. Database query language, which can also: Define structure of data Modify data Specify security constraints

GIFT Department of Computing Science Data Selection and Filtering using the SELECT Statement

More SQL: Complex Queries, Triggers, Views, and Schema Modification

Database Systems. Session 6 Main Theme. Standard Query Language (SQL) Features. Dr. Jean-Claude Franchitti

SQL Functionality SQL. Creating Relation Schemas. Creating Relation Schemas

CS 582 Database Management Systems II

CSC 261/461 Database Systems Lecture 6. Fall 2017

Lab # 2. Data Definition Language (DDL) Eng. Alaa O Shama

CS275 Intro to Databases

Database Systems SQL SL03

An Introduction to Structured Query Language

Data Manipulation Language (DML)

An Introduction to Structured Query Language

Chapter 4: SQL. Basic Structure

Lecture 07. Spring 2018 Borough of Manhattan Community College

SQL (Structured Query Language)

An Introduction to Structured Query Language

Database Systems SQL SL03

CMPT 354: Database System I. Lecture 3. SQL Basics

6.5 Integrity Contraints: SQL Statements:

Transcription:

Chapter 4 Basic SQL Basic SQL SQL language Considered one of the major reasons for the commercial success of relational databases SQL Structured Query Language Statements for data definitions, queries, and updates (both DDL and DML) Core specification Plus specialized extensions 2 SQL Data Definition and Data Types Terminology: Table, row, and column used for relational model terms relation, tuple, and attribute CREATE statement Main SQL command for data definition 3

4 Schema and Catalog Concepts in SQL SQL schema Identified by a schema name Includes an authorization identifier and descriptors for each element Schema elements include Tables, constraints, views, domains, and other constructs Each statement in SQL ends with a semicolon Schema and Catalog Concepts in SQL (cont d.) CREATE SCHEMA statement CREATE SCHEMA COMPANY AUTHORIZATION Jsmith ; Catalog Named collection of schemas in an SQL environment SQL environment Installation of an SQL-compliant RDBMS on a computer system 5 The CREATE TABLE Command in SQL Specify a new relation Provide name Specify attributes and initial constraints Can optionally specify schema: CREATE TABLE COMPANY.EMPLOYEE... or CREATE TABLE EMPLOYEE... 6

7 The CREATE TABLE Command in SQL (cont d.) Base tables (base relations) Relation and its tuples are actually created and stored as a file by the DBMS Virtual relations Created through the CREATE VIEW statement 8 9

10 The CREATE TABLE Command in SQL (cont d.) Some foreign keys may cause errors Specified either via: Circular references Or because they refer to a table that has not yet been created Attribute Data Types and Domains in SQL Basic data types Numeric data types Integer numbers: INTEGER, INT, and SMALLINT Floating-point (real) numbers: FLOAT or REAL, and DOUBLE PRECISION Character-string data types Fixed length: CHAR(n), CHARACTER(n) Varying length: VARCHAR(n), CHAR VARYING(n), CHARACTER VARYING(n) 11 Attribute Data Types and Domains in SQL (cont d.) Bit-string data types Fixed length: BIT(n) Varying length: BIT VARYING(n) Boolean data type Values of TRUE or FALSE or NULL DATE data type Ten positions Components are YEAR, MONTH, and DAY in the form YYYY-MM-DD 12

13 Attribute Data Types and Domains in SQL (cont d.) Additional data types Timestamp data type (TIMESTAMP) Includes the DATE and TIME fields Plus a minimum of six positions for decimal fractions of seconds Optional WITH TIME ZONE qualifier INTERVAL data type Specifies a relative value that can be used to increment or decrement an absolute value of a date, time, or timestamp Attribute Data Types and Domains in SQL (cont d.) Domain Name used with the attribute specification Makes it easier to change the data type for a domain that is used by numerous attributes Improves schema readability Example: CREATE DOMAIN SSN_TYPE AS CHAR(9); 14 Specifying Constraints in SQL Basic constraints: Key and referential integrity constraints Restrictions on attribute domains and NULLs Constraints on individual tuples within a relation 15

16 Specifying Attribute Constraints and Attribute Defaults NOT NULL NULL is not permitted for a particular attribute Default value DEFAULT <value> CHECK clause Dnumber INT NOT NULL CHECK (Dnumber > 0 AND Dnumber < 21); 17 Specifying Key and Referential Integrity Constraints PRIMARY KEY clause Specifies one or more attributes that make up the primary key of a relation Dnumber INT PRIMARY KEY; UNIQUE clause Specifies alternate (secondary) keys Dname VARCHAR(15) UNIQUE; 18

19 Specifying Key and Referential Integrity Constraints (cont d.) FOREIGN KEY clause Default operation: reject update on violation Attach referential triggered action clause Options include SET NULL, CASCADE, and SET DEFAULT Action taken by the DBMS for SET NULL or SET DEFAULT is the same for both ON DELETE and ON UPDATE CASCADE option suitable for relationship relations Giving Names to Constraints Keyword CONSTRAINT Name a constraint Useful for later altering 20 Specifying Constraints on Tuples Using CHECK CHECK clauses at the end of a CREATE TABLE statement Apply to each tuple individually CHECK (Dept_create_date <= Mgr_start_date); 21

22 Basic Retrieval Queries in SQL SELECT statement One basic statement for retrieving information from a database SQL allows a table to have two or more tuples that are identical in all their attribute values Unlike relational model Multiset or bag behavior The SELECT-FROM-WHERE Structure of Basic SQL Queries Basic form of the SELECT statement: 23 The SELECT-FROM-WHERE Structure of Basic SQL Queries (cont d.) Logical comparison operators =, <, <=, >, >=, and <> Projection attributes Attributes whose values are to be retrieved Selection condition Boolean condition that must be true for any retrieved tuple 24

25 Populated Database 26 27

28 Ambiguous Attribute Names Same name can be used for two (or more) attributes As long as the attributes are in different relations Must qualify the attribute name with the relation name to prevent ambiguity Aliasing, Renaming, and Tuple Variables Aliases or tuple variables Declare alternative relation names E and S EMPLOYEE AS E(Fn, Mi, Ln, Ssn, Bd, Addr, Sex, Sal, Sssn, Dno) 29 Unspecified WHERE Clause and Use of the Asterisk Missing WHERE clause Indicates no condition on tuple selection CROSS PRODUCT All possible tuple combinations 30

31 Unspecified WHERE Clause and Use of the Asterisk (cont d.) Specify an asterisk (*) Retrieve all the attribute values of the selected tuples Tables as Sets in SQL SQL does not automatically eliminate duplicate tuples in query results Use the keyword DISTINCT in the SELECT clause Only distinct tuples should remain in the result 32 Tables as Sets in SQL (cont d.) Set operations UNION, EXCEPT (difference), INTERSECT Corresponding multiset operations: UNION ALL, EXCEPT ALL, INTERSECT ALL) 33

34 Substring Pattern Matching and Arithmetic Operators LIKE comparison operator Used for string pattern matching % replaces an arbitrary number of zero or more characters underscore (_) replaces a single character Standard arithmetic operators: Addition (+), subtraction ( ), multiplication (*), and division (/) BETWEEN comparison operator Substring Comparison The LIKE comparison operator is used to compare partial strings Two reserved characters are used: '%' (or '*' in some implementations) replaces an arbitrary number of characters, and '_' replaces a single arbitrary character 35 Substring Comparison Query 25: Retrieve all employees whose address is in Houston, Texas. Here, the value of the ADDRESS attribute must contain the substring 'Houston,TX'. Q25: SELECT FNAME, LNAME FROM EMPLOYEE WHERE ADDRESS LIKE '%Houston,TX% 36

37 Substring Comparison Query 26: Retrieve all employees who were born during the 1950s. Here, '5' must be the 8th character of the string (according to our format for date), so the BDATE value is _5_', with each underscore as a place holder for a single arbitrary character. Q26: SELECT FNAME, LNAME FROM EMPLOYEE WHERE BDATE LIKE ' _5_ Arithmetic Operations The standard arithmetic operators '+', '-'. '*', and '/' can be applied to numeric values in an SQL query result Query 27: Show the effect of giving all employees who work on the 'ProductX' project a 10% raise. Q27: SELECT FNAME, LNAME, 1.1*SALARY FROM EMPLOYEE, WORKS_ON, PROJECT WHERE SSN=ESSN AND PNO=PNUMBER AND PNAME='ProductX 38 Ordering of Query Results Use ORDER BY clause Keyword DESC to see result in a descending order of values Keyword ASC to specify ascending order explicitly ORDER BY D.Dname DESC, E.Lname ASC, E.Fname ASC 39

40 Order By The ORDER BY clause is used to sort the tuples in a query result based on the values of some attribute(s) Query 28: Retrieve a list of employees, their departments and the projects each works in, ordered by the employee's department, and within each department ordered alphabetically by employee last name. Q28: SELECT DNAME, LNAME, FNAME, PNAME FROM DEPARTMENT, EMPLOYEE, WORKS_ON, PROJECT WHERE DNUMBER=DNO AND SSN=ESSN AND PNO=PNUMBER ORDER BY DNAME, LNAME Sample Database All examples discussed below refer to the following database 41 Examples Queries Retrieve the names of all senior students majoring in Cs (computer science). Retrieve the names of all courses taught by Professor King in 2007 and 2008. For each section taught by Professor King, retrieve the course number, semester, year, and number of students who took the section. Retrieve the name and transcript of each senior student (Class = 4) majoring in CS. A transcript includes course name, course number, credit hours, semester, year, and grade for each course completed by the student. 42

43 INSERT, DELETE, and UPDATE Statements in SQL Three commands used to modify the database: INSERT, DELETE, and UPDATE The INSERT Command Specify the relation name and a list of values for the tuple 44 The DELETE Command Removes tuples from a relation Includes a WHERE clause to select the tuples to be deleted 45

46 The UPDATE Command Modify attribute values of one or more selected tuples Additional SET clause in the UPDATE command Specifies attributes to be modified and new values Additional Features of SQL Techniques for specifying complex retrieval queries Writing programs in various programming languages that include SQL statements Set of commands for specifying physical database design parameters, file structures for relations, and access paths Transaction control commands 47 Additional Features of SQL (cont d.) Specifying the granting and revoking of privileges to users Constructs for creating triggers Enhanced relational systems known as object-relational New technologies such as XML and OLAP 48