creating relationships between tables (sql) by hubspot-directory.blogspot.com

70
Chapter 6 Creating Relationships Between Tables

Upload: razak-rasul

Post on 06-May-2015

557 views

Category:

Education


0 download

DESCRIPTION

Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

TRANSCRIPT

Page 1: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

Chapter 6

Creating Relationships Between Tables

Page 2: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

2

In this chapter, you will learn:

The basic commands and functions of SQLHow to use SQL for data administration (to

create tables)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

Page 3: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

3

Introduction to SQLSQL functions fit into two broad categories:

Data definition languageSQL includes commands to:

Create database objects, such as tables, indexes, and views

Define access rights to those database objectsData manipulation language

Includes commands to insert, update, delete, and retrieve data within database tables

Page 4: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

4

Introduction to SQL (continued)

Page 5: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

5

Introduction to SQL (continued)

Page 6: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

6

Introduction to SQL (continued)

Page 7: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

7

Data Definition CommandsExamine simple database model and

database tables that will form basis for many SQL examples

Understand data environment

Page 8: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

8

The Database Model

Page 9: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

9

Creating the DatabaseFollowing 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

databaseTends to differ substantially from one RDBMS

to another

Page 10: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

10

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

Page 11: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

11

Data TypesData type selection is usually dictated by

nature of data and by intended usePay close attention to expected use of

attributes for sorting and data retrieval purposes

Page 12: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

12

Data Types (continued)

Page 13: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

13

Creating Table StructuresUse one line per column (attribute)

definitionUse spaces to line up attribute

characteristics and constraintsTable and attribute names are capitalizedNOT NULL specification UNIQUE specification

Page 14: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

14

Creating Table Structures (cont)

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

Page 15: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

15

SQL ConstraintsNOT NULL constraint

Ensures that column does not accept nullsUNIQUE constraint

Ensures that all values in column are uniqueDEFAULT constraint

Assigns value to attribute when a new row is added to table

CHECK constraint Validates data when attribute value is entered

Page 16: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

16

Data Manipulation Commands

Adding table rowsSaving table changesListing table rowsUpdating table rowsRestoring table contentsDeleting table rowsInserting table rows with a select subquery

Page 17: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

17

Adding Table RowsINSERT

Used to enter data into tableSyntax:

INSERT INTO columnnameVALUES (value1, value2, … , valuen);

Example: INSERT INTO PRODUCT VALUES (‘11QER’,’Power painter’, ‘12/3/2000’, 2121344);

Page 18: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

18

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 commasA value is required for each column

Use NULL for unknown values

Page 19: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

19

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

Page 20: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

20

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

Example: SELECT* FROM PRODUCT;

Page 21: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

21

Listing Table Rows (continued)

Page 22: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

22

Updating Table RowsUPDATE

Modify data in a tableSyntax:

UPDATE tablenameSET columnname = expression [, columname = expression][WHERE conditionlist];

If more than one attribute is to be updated in row, separate corrections with commas

Example: UPDATE PRODUCT SET P_INDATE = ‘02/18/2012’, P-PRICE = 15.99, P_MIN =

10 WHERE P_CODE = ‘11QER’;

Page 23: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

23

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

Page 24: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

24

Deleting Table RowsDELETE

Deletes a table rowSyntax:

DELETE FROM tablename[WHERE conditionlist ];

WHERE condition is optionalIf WHERE condition is not specified, all rows

from specified table will be deletedExample: DELETE FROM PRODUCT

WHERE P_CODE = ‘11QER’;

Page 25: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

25

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;

› Example: INSERT INTO MySalesReason SELECT SalesReasonID, Name, ModifiedDate FROM AdventureWorks2008

Page 26: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

26

Selecting Rows with Conditional Restrictions

Select partial table contents by placing restrictions on rows to be included in outputAdd conditional restrictions to SELECT

statement, using WHERE clauseSyntax:

SELECT columnlistFROM tablelist[ WHERE conditionlist ] ;

Example SELECT P_DESCRIPT, P_INDATE, P_PRICE FROM PRODUCT WHERE V_CODE = 21344;

Page 27: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

27

Selecting Rows with Conditional Restrictions (continued)

Page 28: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

28

Selecting Rows with Conditional Restrictions

Page 29: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

29

Selecting Rows with Conditional Restrictions (continued)

Page 30: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

30

Selecting Rows with Conditional Restrictions (continued)

SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODEFROM PRODUCTWHERE V_CODE <> 12344;

Page 31: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

31

Selecting Rows with Conditional Restrictions (continued)

SELECT P_DESCRIPT, P_QOH, P_MIN, P_PRICEFROM PRODUCTWHERE P_PRICE <= 10;

Page 32: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

32

Selecting Rows with Conditional Restrictions (continued)

SELECT P_DESCRIPT, P_QOH, P_MIN, P_PRICE, P_QOH * P_PRICEFROM PRODUCT;

Page 33: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

33

Arithmetic Operators: The Rule of Precedence

Perform operations within parenthesesPerform power operationsPerform multiplications and divisionsPerform additions and subtractions

Page 34: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

34

Arithmetic Operators: The Rule of Precedence (continued)

Page 35: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

35

Logical Operators: AND, OR, and NOT

SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODEFROM PRODUCTWHERE V_CODE = 21344OR V_CODE = 24288;

Page 36: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

36

Logical Operators: AND, OR, and NOT (cont)

SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODEFROM PRODUCTWHERE P_PRICE < 50AND P_DATE >= ’01/20/2006’;

Page 37: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

37

Logical Operators: AND, OR, and NOT (cont)

SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODEFROM PRODUCTWHERE (P_PRICE < 50 AND P_INDATE > ’12/15/2006’)OR V_CODE = 24288;

Page 38: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

38

Special Operators

BETWEENUsed to check whether attribute value is within a

rangeIS NULL

Used to check whether attribute value is nullLIKE

Used to check whether attribute value matches given string pattern

INUsed to check whether attribute value matches

any value within a value listEXISTS

Used to check if sub query returns any rows

Page 39: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

39

Special Operators

Example:SELECT*FROM PRODUCTWHERE P_PRICE BETWEEN 50.00 AND 100.00;

SELECT P_CODE, P_DESCRIPTFROM PRODUCTWHERE P_MIN IS NULL;

SELECT V_NAME, V_CONTACT, V_AREACODE, V_PHONEFROM VENDORWHERE V_CONTACT LIKE ‘Smith%’; - NOT LIKE if do not

want any Smith

Page 40: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

40

EXAMPLES SELECT first_name, last_name, subject 

FROM student_details WHERE subject = ‘Maths’ OR subject = ‘Science’;

SELECT first_name, last_name, age FROM student_details WHERE age >= 10 AND age <= 15;

SELECT first_name, last_name, games FROM student_details WHERE NOT games = ‘Football’;

SELECT first_name, last_name, age, games FROM student_details WHERE age >= 10 AND age <= 15 OR NOT games = ‘Football’;

Page 41: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

41

Advanced Data Definition Commands

All changes in table structure are made by using ALTER commandFollowed by keyword that produces specific

change Following three options are available:

ADDMODIFYDROP

Page 42: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

42

Changing a Column’s Data Type

ALTER can be used to change data typeSome RDBMSs (such as Oracle) do not

permit changes to data types unless column to be changed is empty

Page 43: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

43

Changing a Column’s Data Characteristics

Use ALTER to change data characteristicsIf column to be changed already contains

data, changes in column’s characteristics are permitted if those changes do not alter the data type

Page 44: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

44

Adding a ColumnUse ALTER to add column

Do not include the NOT NULL clause for new column

Page 45: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

45

Dropping a ColumnUse ALTER to drop column

Some RDBMSs impose restrictions on the deletion of an attribute

Page 46: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

46

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 commandSyntax:

ALTER TABLE tablename ADD PRIMARY KEY(fieldname);

For foreign key, use FOREIGN KEY in place of PRIMARY KEY

Page 47: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

47

Deleting a Table from the Database

DROPDeletes table from databaseSyntax:

DROP TABLE tablename;

Page 48: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

48

Advanced Select QueriesSQL provides useful functions that can:

CountFind minimum and maximum valuesCalculate averages

SQL allows user to limit queries to only those entries having no duplicates or entries whose duplicates may be grouped

Page 49: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

49

Aggregate Functions

Page 50: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

50

Aggregate Functions (continued)

Page 51: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

51

Aggregate Functions (continued)

Page 52: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

52

Aggregate Functions (continued)

Page 53: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

53

Aggregate Functions (continued)

Page 54: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

54

Grouping Data

Page 55: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

55

Grouping Data (continued)

Page 56: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

56

Grouping Data (continued)

Page 57: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

57

Joining Database TablesAbility 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

Page 58: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

58

Joining Database Tables (continued)

Page 59: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

59

Joining Database Tables (continued)

Page 60: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

60

Joining Database Tables (continued)

Page 61: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

61

Joining Tables with an AliasAlias can be used to identify source tableAny legal table name can be used as aliasAdd alias after table name in FROM clause

FROM tablename alias

Page 62: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

62

Recursive Joins

Page 63: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

63

Recursive Joins (continued)

Page 64: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

64

Outer Joins

Page 65: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

65

Outer Joins (continued)

Page 66: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

66

SummarySQL 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

Page 67: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

67

Summary (continued)DML commands allow you to add, modify, and

delete rows from tablesThe basic DML commands are SELECT, INSERT,

UPDATE, DELETE, COMMIT, and ROLLBACKINSERT command is used to add new rows to

tablesSELECT statement is main data retrieval

command in SQL

Page 68: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

68

Summary (continued)Many SQL constraints can be used with

columnsThe column list represents one or more

column names separated by commasWHERE clause can be used with SELECT,

UPDATE, and DELETE statements to restrict rows affected by the DDL command

Page 69: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

69

Summary (continued)Aggregate functions

Special functions that perform arithmetic computations over a set of rows

ORDER BY clauseUsed to sort output of SELECT statementCan sort by one or more columns and use

either an ascending or descending orderJoin output of multiple tables with SELECT

statement

Page 70: Creating Relationships between tables (SQL) by hubspot-directory.blogspot.com

70

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