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

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

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

Chapter # 7 Introduction to Structured Query Language (SQL) Part I

Introduction to SQL. From Rob and Coronel (2004), Database Systems: Design, Implementation, and Management

Chapter # 7 Introduction to Structured Query Language (SQL) Part II

Oracle Database 11g: SQL and PL/SQL Fundamentals

MTA Database Administrator Fundamentals Course

Oracle Database: SQL and PL/SQL Fundamentals NEW

CSC Web Programming. Introduction to SQL

Oracle Database: SQL and PL/SQL Fundamentals Ed 2

Sql Server Syllabus. Overview

Querying Data with Transact SQL

SIT772 Database and Information Retrieval WEEK 6. RELATIONAL ALGEBRAS. The foundation of good database design

Oracle Syllabus Course code-r10605 SQL

INDEX. 1 Basic SQL Statements. 2 Restricting and Sorting Data. 3 Single Row Functions. 4 Displaying data from multiple tables

Table of Contents. PDF created with FinePrint pdffactory Pro trial version

UNIT-IV (Relational Database Language, PL/SQL)

1 Writing Basic SQL SELECT Statements 2 Restricting and Sorting Data

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course:

Oracle Database 10g: Introduction to SQL

Full file at

Oracle Database: Introduction to SQL

20461: Querying Microsoft SQL Server 2014 Databases

SQL Interview Questions

! Define terms. ! Interpret history and role of SQL. ! Write single table queries using SQL. ! Establish referential integrity using SQL

Oracle Database: Introduction to SQL

(ADVANCED) DATABASE SYSTEMS (DATABASE MANAGEMENTS) PROF. DR. HASAN HÜSEYİN BALIK (6 TH WEEK)

Language. f SQL. Larry Rockoff COURSE TECHNOLOGY. Kingdom United States. Course Technology PTR. A part ofcenqaqe Learninq

T-SQL Training: T-SQL for SQL Server for Developers

Mobile MOUSe MTA DATABASE ADMINISTRATOR FUNDAMENTALS ONLINE COURSE OUTLINE

Oracle Database: Introduction to SQL

DB2 SQL Class Outline

5. Single-row function

Introduction. Sample Database SQL-92. Sample Data. Sample Data. Chapter 6 Introduction to Structured Query Language (SQL)

AO3 - Version: 2. Oracle Database 11g SQL

8) A top-to-bottom relationship among the items in a database is established by a

ITCertMaster. Safe, simple and fast. 100% Pass guarantee! IT Certification Guaranteed, The Easy Way!

Test Bank for Database Processing Fundamentals Design and Implementation 13th Edition by Kroenke

Chapter-14 SQL COMMANDS

normalization are being violated o Apply the rule of Third Normal Form to resolve a violation in the model

Oracle Database: SQL and PL/SQL Fundamentals

Querying Data with Transact-SQL

Oracle Database: Introduction to SQL Ed 2

RDBMS-Day3. SQL Basic DDL statements DML statements Aggregate functions

Oracle Database: Introduction to SQL/PLSQL Accelerated

2) SQL includes a data definition language, a data manipulation language, and SQL/Persistent stored modules. Answer: TRUE Diff: 2 Page Ref: 36

Oracle Database 11g: Introduction to SQLRelease 2

Lecture 2: Chapter Objectives. Relational Data Structure. Relational Data Model. Introduction to Relational Model & Structured Query Language (SQL)

COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014

Exact Numeric Data Types

Querying Data with Transact SQL Microsoft Official Curriculum (MOC 20761)

Lecture 2: Chapter Objectives

After completing this course, participants will be able to:

SQL Fundamentals. Chapter 3. Class 03: SQL Fundamentals 1

1) Introduction to SQL

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

Interview Questions on DBMS and SQL [Compiled by M V Kamal, Associate Professor, CSE Dept]

Relational Data Structure and Concepts. Structured Query Language (Part 1) The Entity Integrity Rules. Relational Data Structure and Concepts

Business Analytics. SQL PL SQL [Oracle 10 g] P r i n c e S e t h i w w w. x l m a c r o. w e b s. c o m

SQL stands for Structured Query Language. SQL lets you access and manipulate databases

tablename ORDER BY column ASC tablename ORDER BY column DESC sortingorder, } The WHERE and ORDER BY clauses can be combined in one

Database Management System 9

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

Introduction to SQL/PLSQL Accelerated Ed 2

Lesson 2. Data Manipulation Language

Course Outline and Objectives: Database Programming with SQL

The Structured Query Language Get Started

1. Data Definition Language.

ORACLE DATABASE 12C INTRODUCTION

Review -Chapter 4. Review -Chapter 5

12. MS Access Tables, Relationships, and Queries

SQL for MySQL A Beginner s Tutorial

AVANTUS TRAINING PTE LTD

20461: Querying Microsoft SQL Server

SQL STRUCTURED QUERY LANGUAGE

Comparison Operators. Selecting Rows with Conditional Restrictions

Querying Microsoft SQL Server (MOC 20461C)

Querying Microsoft SQL Server

COURSE OUTLINE: Querying Microsoft SQL Server

Module 9: Managing Schema Objects

Structured Query Language (SQL) Part A. KSE 521 Topic 10 Mun Yi

SQL Workshop. Introduction Queries. Doug Shook

Slides by: Ms. Shree Jaswal

Querying Microsoft SQL Server

Querying Data with Transact-SQL

Course 20461C: Querying Microsoft SQL Server

Retrieving Data Using the SQL SELECT Statement. Copyright 2004, Oracle. All rights reserved.

Introduction to Computer Science and Business

Databases and SQL programming overview

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe

Chapter 4: SQL Basics

BINF 6211 SQL. Lecture th, 2008 Dr. Jennifer W. Weller Dr. Andrew Carr. Instructors: Weller, Carr

III. Advanced Design and Implementation PART. Introduction to Structured Query Language (SQL) Advanced SQL. Database Design

II B.Sc(IT) [ BATCH] IV SEMESTER CORE: RELATIONAL DATABASE MANAGEMENT SYSTEM - 412A Multiple Choice Questions.

Querying Microsoft SQL Server

Downloaded from

SQL - Subqueries and. Schema. Chapter 3.4 V4.0. Napier University

Follow these steps to get started: o Launch MS Access from your start menu. The MS Access startup panel is displayed:

Retrieving Data Using the SQL SELECT Statement. Copyright 2009, Oracle. All rights reserved.

QUERYING MICROSOFT SQL SERVER COURSE OUTLINE. Course: 20461C; Duration: 5 Days; Instructor-led

Transcription:

Chapter 7 Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel 1

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 2

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 3

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 4

Introduction to SQL (continued) 5

Introduction to SQL (continued) 6

Introduction to SQL (continued) 7

Data Definition Commands Examine simple database model and database tables that will form basis for many SQL examples Understand data environment 8

The Database Model 9

The Database Model (continued) 10

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 11

Authentication The Database Schema 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 12

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 13

Data Types (continued) 14

Creating Table Structures Use one line per column (attribute) definition Use spaces to line up attribute characteristics and constraints Table and attribute names are capitalized NOT NULL specification UNIQUE specification 15

Creating Table Structures (continued) Primary key attributes contain both a NOT NULL and a UNIQUE specification RDBMS will automatically enforce referential integrity for foreign keys Command sequence ends with semicolon 16

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 17

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 18

SQL Indexes (continued) 19

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 20

Adding Table Rows INSERT Used to enter data into table Syntax: INSERT INTO columnname VALUES (value1, value2,, valuen); 21

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 22

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 23

SELECT Listing Table Rows Used to list contents of table Syntax: SELECT columnlist FROM tablename; Columnlist represents one or more attributes, separated by commas Asterisk can be used as wildcard character to list all attributes 24

Listing Table Rows (continued) 25

Updating Table Rows UPDATE Modify data in a table Syntax: UPDATE tablename SET columnname = expression [, columname = expression] [WHERE conditionlist]; If more than one attribute is to be updated in row, separate corrections with commas 26

ROLLBACK Restoring Table Contents 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 27

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 28

INSERT Inserting Table Rows with a Select Subquery 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; 29

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 columnlist FROM tablelist [ WHERE conditionlist ] ; 30

Selecting Rows with Conditional Restrictions (continued) 7 31

Selecting Rows with Conditional Restrictions (continued) 7 32

Selecting Rows with Conditional Restrictions (continued) 7 33

Selecting Rows with Conditional Restrictions (continued) 7 34

Selecting Rows with Conditional Restrictions (continued) 7 35

Selecting Rows with Conditional Restrictions (continued) 7 36

Selecting Rows with Conditional Restrictions (continued) 7 37

Selecting Rows with Conditional Restrictions (continued) 7 38

Selecting Rows with Conditional Restrictions (continued) 7 39

Arithmetic Operators: The Rule of Precedence 7 Perform operations within parentheses Perform power operations Perform multiplications and divisions Perform additions and subtractions 40

Arithmetic Operators: The Rule of Precedence (continued) 7 41

Logical Operators: AND, OR, and NOT 7 42

Logical Operators: AND, OR, and NOT (continued) 7 43

Logical Operators: AND, OR, and NOT (continued) 7 44

Special Operators BETWEEN Used to check whether attribute value is within a range IS NULL Used to check whether attribute value is null LIKE Used to check whether attribute value matches given string pattern 45

Special Operators (continued) IN Used to check whether attribute value matches any value within a value list EXISTS Used to check if subquery returns any rows 46

Advanced Data Definition Commands All changes in table structure are made by using ALTER command Followed by keyword that produces specific change Following three options are available: ADD MODIFY DROP 47

Changing a Column s Data Type ALTER can be used to change data type Some RDBMSs (such as Oracle) do not permit changes to data types unless column to be changed is empty 48

Changing a Column s Data Characteristics 7 Use ALTER to change data characteristics If column to be changed already contains data, changes in column s characteristics are permitted if those changes do not alter the data type 49

Adding a Column Use ALTER to add column Do not include the NOT NULL clause for new column 50

Dropping a Column Use ALTER to drop column Some RDBMSs impose restrictions on the deletion of an attribute 51

Advanced Data Updates 52

Copying Parts of Tables SQL permits copying contents of selected table columns so that the data need not be reentered manually into newly created table(s) First create the PART table structure Next add rows to new PART table using PRODUCT table rows 53

Copying Parts of Tables (continued) 54

Adding Primary and Foreign Key Designations When table is copied, integrity rules do not copy, so primary and foreign keys need to be manually defined on new table User ALTER TABLE command Syntax: ALTER TABLE tablename ADD PRIMARY KEY(fieldname); For foreign key, use FOREIGN KEY in place of PRIMARY KEY 55

Deleting a Table from the Database DROP Deletes table from database Syntax: DROP TABLE tablename; 56

Advanced Select Queries SQL provides useful functions that can: Count Find minimum and maximum values Calculate averages SQL allows user to limit queries to only those entries having no duplicates or entries whose duplicates may be grouped 57

Ordering a Listing 58

Ordering a Listing (continued) 59

Ordering a Listing (continued) 60

Listing Unique Values 61

Aggregate Functions 62

Aggregate Functions (continued) 63

Aggregate Functions (continued) 64

Aggregate Functions (continued) 65

Aggregate Functions (continued) 66

Grouping Data 67

Grouping Data (continued) 68

Grouping Data (continued) 69

Virtual Tables: Creating a View View is virtual table based on SELECT query Can contain columns, computed columns, aliases, and aggregate functions from one or more tables Base tables are tables on which view is based Create view by using CREATE VIEW command 70

Virtual Tables: Creating a View (continued) 7 71

Joining Database Tables Ability to combine (join) tables on common attributes is most important distinction between relational database and other databases Join is performed when data are retrieved from more than one table at a time Join is generally composed of an equality comparison between foreign key and primary key of related tables 72

Joining Database Tables (continued) 73

Joining Database Tables (continued) 74

Joining Database Tables (continued) 75

Joining Tables with an Alias Alias can be used to identify source table Any legal table name can be used as alias Add alias after table name in FROM clause FROM tablename alias 76

Recursive Joins 77

Recursive Joins (continued) 78

Outer Joins 79

Outer Joins (continued) 80

Summary SQL commands can be divided into two overall categories: Data definition language commands Data manipulation language commands The ANSI standard data types are supported by all RDBMS vendors in different ways Basic data definition commands allow you to create tables, indexes, and views 81

Summary (continued) DML commands allow you to add, modify, and delete rows from tables The basic DML commands are SELECT, INSERT, UPDATE, DELETE, COMMIT, and ROLLBACK INSERT command is used to add new rows to tables SELECT statement is main data retrieval command in SQL 82

Summary (continued) Many SQL constraints can be used with columns The column list represents one or more column names separated by commas WHERE clause can be used with SELECT, UPDATE, and DELETE statements to restrict rows affected by the DDL command 83

Summary (continued) Aggregate functions Special functions that perform arithmetic computations over a set of rows ORDER BY clause Used to sort output of SELECT statement Can sort by one or more columns and use either an ascending or descending order Join output of multiple tables with SELECT statement 84

Summary (continued) Natural join uses join condition to match only rows with equal values in specified columns Right outer join and left outer join used to select rows that have no matching values in other related table 85