introduction to sqlhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · structured query...

55
Modern Database Management 12 th Edition Global Edition Jeff Hoffer, Ramesh Venkataraman, Heikki Topi CHAPTER 6: INTRODUCTION TO SQL 授課老師:楊立偉教授,台灣大學工管系 (13版於Chapter 5)

Upload: others

Post on 05-Feb-2020

13 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Modern Database Management12th Edition

Global Edition

Jeff Hoffer, Ramesh Venkataraman, Heikki Topi

CHAPTER 6:

INTRODUCTION TO SQL

授課老師:楊立偉教授,台灣大學工管系

(13版於Chapter 5)

Page 2: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-2

SQL OVERVIEW

Structured Query Language – 結構式查詢語言often pronounced “Sequel”

The standard for relational database management systems (RDBMS)

1986成為ANSI標準, 1987成為ISO標準

各家廠商的實作可能略有不同

RDBMS: A database management system that manages data as a collection of tables in which all relationships are represented by common values in related tables

Page 3: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-3

HISTORY OF SQL

1970–E. F. Codd develops relational database concept

1974-1979–System R with Sequel (later SQL) created at IBM Research Lab

1979–Oracle markets first relational DB with SQL

1981 – SQL/DS first available RDBMS system on DOS/VSE

Others followed: INGRES (1981), IDM (1982), DG/SGL (1984), Sybase (1986)

1986–ANSI SQL standard released

1989, 1992, 1999, 2003, 2006, 2008, 2011, 2016 –Major ANSI standard updates

Current–SQL is supported by most major database vendors

Oracle, Microsoft SQL Server, IBM DB2, MySQL, Postgre SQL, etc.

Page 4: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-4

PURPOSE OF SQL STANDARD

Specify syntax/semantics for data definition and manipulation 資料定義與操作的語法

Define data structures and basic operations 定義了資料結構及基本操作

Enable portability of database definition and application modules 實現了可攜性

Specify minimal (level 1) and complete (level 2) standards

Allow for later growth/enhancement to standard (referential integrity, transaction management, user-defined functions, extended join operations, national character sets) 允許日後做擴充

Page 5: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-5

BENEFITS OF A STANDARDIZED RELATIONAL

LANGUAGE

Reduced training costs降低學習成本

Productivity提高生產力

Application portability應用程式可攜性

Application longevity應用程式長久性

Reduced dependence on a single vendor減少依賴單一廠商

Cross-system communication有助跨系統溝通

Page 6: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-6

SQL ENVIRONMENT

Catalog A set of schemas that constitute the description of a database

Schema The structure that contains descriptions of objects created by a

user (base tables, views, constraints)

Data Definition Language (DDL) Commands that define a database, including creating, altering,

and dropping tables and establishing constraints

Data Manipulation Language (DML) Commands that maintain and query a database

Data Control Language (DCL) Commands that control a database, including administering

privileges and committing data

Page 7: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-7

Figure 6-1

A simplified schematic of a typical SQL environment, as

described by the SQL: 2011 standard

不同的Environment

(或稱Space)

開發用 正式用

Page 8: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-8

Figure 6-4

DDL, DML, DCL, and the database development process

針對表格 DDL :建立 CREATE TABLE修改 ALTER TABLE刪除 DROP TABLE列表 SHOW TABLES描述 DESC tablename

針對資料 DML : 新增 INSERT修改 UPDATE刪除 DELETE查詢 SELECT…

Page 9: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-9

For Table新增 CREATE TABLE tablename …刪除 DROP TABLE tablename …修改 ALTER TABLE tablename …查詢 SHOW TABLES / DESC tablename

For Record新增 INSERT INTO tablename …刪除 DELETE FROM tablename …修改 UPDATE tablename …查詢 SELECT FROM tablename …

For Database新增 CREATE DATABASE dbname刪除 DROP DATABASE dbname使用 USE dbname

Page 10: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-10

SQL DATABASE DEFINITION

Data Definition Language (DDL)

Major CREATE statements:

CREATE SCHEMA–defines a portion of the

database owned by a particular user

CREATE TABLE–defines a new table and its

columns

CREATE VIEW–defines a logical table from one or

more tables or views 由一至多張表格所構成的虛擬表格 (視界)

Page 11: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-11

SQL DATA TYPES

資料型別可能依個別廠商而略有不同或自有擴充

Page 12: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-12

STEPS IN TABLE CREATION

1. Identify data types for attributes 決定欄位型別

2. Identify columns that can and cannot be null 可否無值

3. Identify columns that must be unique (candidate keys) 該欄位之值是否不可重複

4. Identify primary key–foreign key mates 主鍵及外鍵

5. Determine default values 有預設值嗎

6. Identify constraints on columns (domain specifications) 有任何限制嗎

7. Create the table and associated indexes 是否建索引

Page 13: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-13

Figure 6-5 General syntax for CREATE TABLE

statement used in data definition language

語法表示 [ ] 表示選項,可填可不填{ } 表示重複多次,至少一次

Page 14: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-14

THE FOLLOWING SLIDES CREATE TABLES FOR

THIS ENTERPRISE DATA MODEL

(from Chapter 1, Figure 1-3)

Page 15: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-15

Figure 6-6 SQL database definition commands for PVF Company

(Oracle 12c)

Overall table

definitions

Page 16: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-16

Defining attributes and their data types

為 key 取一個名字(同資料庫中不可同名)

decimal [(p [,s])] 和 number [(p [,s])]• p 固定有效位數,小數點左右兩側都包括在內• s 小數位數的數字。• number 與 decimal 的功能相同。

語法及測試 https://www.w3schools.com/sql/sql_create_table.asp

Page 17: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-17

Non-nullable specification

Identifying primary key

Primary keys

can never have

NULL values

Page 18: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-18

Non-nullable specifications

Primary key

Some primary keys are composite–

composed of multiple attributes

注意PK為複合欄位時的寫法

為 key 取一個名字(同資料庫中不可同名)

Page 19: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-19

DEFAULT value指定預設值SYSDATE是系統日期變數

Domain constraint

Controlling the values in attributes

Page 20: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-20

Primary key of

parent table

Identifying foreign keys and establishing relationships

Foreign key of dependent table

Page 21: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-21

DATA INTEGRITY CONTROLS

Referential integrity–constraint that ensures that foreign key values of a table must match primary key values of a related table in 1:M relationships

Restricting:

Deletes of primary records

Updates of primary records

Inserts of dependent records

Page 22: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-22

Relational

integrity is

enforced via

the primary-

key to foreign-

key match

Figure 6-7 Ensuring data integrity through updates

自動檢查完整性

有四種指定方法

註 : 有些較簡易的RDBMS可能未支援

1

2

3

4

Page 23: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-23

CHANGING TABLES

ALTER TABLE statement allows you to

change column specifications:

Table Actions:

Example (adding a new column with a default value):

Page 24: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-24

More examples

ALTER TABLE Customer_T ADD (Gender CHAR(1))

ALTER TABLE Customer_T DROP Gender

尚包含改名、改型別等功能;其它請參考語法

Page 25: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-25

REMOVING TABLES

DROP TABLE statement allows you to remove

tables from your schema:

DROP TABLE Customer_T

Page 26: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-26

INSERT STATEMENT

Adds one or more rows to a table 開始加入資料至表格內

Inserting into a table

Inserting a record that has some null attributes requires identifying the fields that actually get data

Inserting from another table 直接將查詢結果加入

Page 27: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-27

CREATING TABLES WITH IDENTITY COLUMNS

Inserting into a table does not require explicit customer ID entry or field list

INSERT INTO Customer_T VALUES ( 'Contemporary Casuals', '1355 S. Himes Blvd.', 'Gainesville', 'FL', 32601);

自動編號欄位型別

往後加入資料時就不需指定該欄位之值(會自動編號)

Page 28: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-28

DELETE STATEMENT

Removes rows from a table 將表格內(符合條件的部份)資料刪除

Delete certain rows

DELETE FROM Customer_T

WHERE CustomerState = 'HI';

使用WHERE條件子句做篩選

Delete all rows

DELETE FROM Customer_T;

Page 29: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-29

C_ID C_NAME C_ADDR C_STATE

1 John … HI

2 Mary … CA

3 Bob … TX

4 Peter … HI

5 Sue … NY

6 Leo … CA

WHERE bool_expressionWHERE (field operator value) bool_operator (field operator value) …

operator 例如 =, >, <, !=, >=, <=bool_operator 例如 AND, OR, NOT 可加括號

DELETE FROM Customer_T 可接範例例如

WHERE C_STATE=‘HI’ OR C_STATE=‘NY’ 刪掉住HI或NY的客戶

WHERE C_ID>3 AND C_STATE=‘HI’ 刪掉編號大於3且住HI的客戶

WHERE C_ID>3 AND NOT C_STATE=‘HI’ 刪掉編號大於3且不是住HI的客戶

WHERE 像是表格的水平定位器 (或過濾器)rows是無順序的,故要透過WHERE來指定作用的對象

Page 30: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-30

UPDATE STATEMENT

Modifies data in existing rows修改表格內(符合條件的部份)資料之值

使用WHERE條件子句 (欄位條件的布林邏輯組合)

Page 31: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-31

Update a lot of rows 小心使用

UPDATE Product_T SET ProductDescription="";

未指定WHERE子句,故作用在全部rows→清空欄位

UPDATE Product_T SET StandardPrice = 775;

何意? 因漏打WHERE子句,誤將全產品資料價格都設成775

Page 32: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-32

CREATE COLUMN INDEX

Speed up in specific columns

為某欄位或某些欄位組合建立索引 (通常是key欄位或篩選條件)

Example

CREATE INDEX indexname ON Customer_T(CustomerName)

This makes an index for the CUSTOMER_NAME field of the

CUSTOMER_T table

該欄位的查詢速度會大幅增加 (由線性時間下降成 log 時間)

Every key field (PK or FK) is suggested to add index

加快跨表關聯

WHERE子句中常作為篩選條件的欄位,也應建索引以加快查詢

Page 33: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-33

SELECT STATEMENT

Used for queries on single or multiple tables

Clauses of the SELECT statement: SELECT 要取出哪些欄位

List the columns (and expressions) to be returned from the query

FROM 從哪張表

Indicate the table(s) or view(s) from which data will be obtained

WHERE 要取出哪些筆紀錄 (條件子句)

Indicate the conditions under which a row will be included in the result

GROUP BY 紀錄是否要合併, 用哪些欄位合併

Indicate categorization of results

HAVING 若紀錄有合併, 是否要再做篩選 (條件子句)

Indicate the conditions under which a category (group) will be included

ORDER BY 依哪些欄位做排序

Sorts the result according to specified criteria

Page 34: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-34

Figure 6-10

SQL statement

processing order

(based on van der

Lans, 2006 p.100)

Figure 6-2

General syntax of the SELECT

statement used in DML

內部RDBMS在解釋這句命令時的處理順序

Page 35: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-35

SELECT EXAMPLE (1)

Find products with standard price less than

$275

Table 6-3: Comparison Operators in SQL

SELECT像是垂直定位器,指定取出哪些欄位WHERE像是水平定位器,指定取出哪些紀錄兩者合用,就可以取出2維表格中任何想取的區塊

Page 36: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-36

SELECT EXAMPLE (2) USING ALIAS

Alias is an alternative column or table name

SELECT Customer_T.CustomerName, Customer_T.CustomerAddress

FROM Customer_T

WHERE Customer_T.CustomerName = ‘Home Furnishings’;

SELECT C.CustomerName, C.CustomerAddress

FROM Customer_T AS C

WHERE C.CustomerName = ‘Home Furnishings’;

SELECT C.CustomerName AS NAME, C.CustomerAddress

FROM Customer_T AS C

WHERE NAME = ‘Home Furnishings’;

原句

為表格取別名

為欄位取別名

取個別名, 比較方便指定, 也可省去重複打字

(完整欄位的寫法是 tablename.fieldname,在不混淆的情況下tablename可以省略)

Page 37: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-37

SELECT EXAMPLE (3) USING A FUNCTION

可以使用函數對欄位做運算 例如 COUNT(), MAX(), MIN(), SUM(), AVG()…等

依RDBMS不同另有許多擴充函數

Using the COUNT aggregate function to find totals

找出總筆數

SELECT COUNT(*) FROM ORDERLINE_T

WHERE ORDERID = 1004;

Note: With aggregate functions you can’t have single-valued columns included in the SELECT clause, unless they are included in the GROUP BY clause.

* 是 "所有欄位" 的簡寫改寫為特定欄位亦可

Page 38: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-38

https://www.w3schools.com/sql/sql_ref_mysql.asp 可查MySQL特殊函數或其他語法

Page 39: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-39

SELECT EXAMPLE (4) BOOLEAN OPERATORS

AND, OR, and NOT Operators for customizing conditions

in WHERE clause

Note: The LIKE operator allows you to compare strings using wildcards. For example, the % wildcard in ‘%Desk’ indicates that all strings that have any number of characters preceding the word “Desk” will be allowed.

LIKE 是做字串比對用的, 支援萬用字元%或_ (或以*與?表示)

Page 40: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-40

LIKE OPERATOR AND WILDCARDS

% or * : zero to many of any characters

_ or ? : one of any characters

Example

Mic* matches Mickey, Michael, Michelle, etc.

*son matches Dickson, Jackson, Bobson, etc.

s?n matches sun, son, san, sin, etc.

可以多個混合使用 例 c??p* matches computer, camp

40

Page 41: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-41

Figure 6-8 Boolean query A without use of parentheses

By default,

processing order

of Boolean

operators is NOT,

then AND, then

OR

Page 42: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-42

With parentheses… these override the normal

precedence of Boolean operators 用括號改變優先順序

With parentheses, you can override normal precedence rules. In

this case parentheses make the OR take place before the AND.

Page 43: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-43

Figure 6-9 Boolean query B with use of parentheses

Page 44: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-44

SELECT EXAMPLE (5) SORTING RESULTS WITH

ORDER BY CLAUSE 將查詢結果做排序

Sort the results first by STATE, and within a state

by the CUSTOMER NAME

Note: The IN operator in this example allows you to include rows whose

CustomerState value is either FL, TX, CA, or HI. It is more efficient than separate

OR conditions. 跟寫 STATE=‘FL’ OR STATE=‘TX’ OR … 是一樣的效果

ORDER BY field1 [ASC|DESC] [,field2 [ASC|DESC]…]可用ASC或DESC來指定升冪或降冪排列

Page 45: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-45

SELECT EXAMPLE (6) CATEGORIZING RESULTS

USING GROUP BY CLAUSE

For use with aggregate functions需配合集合函數使用

Scalar aggregate: single value returned from SQL query with

aggregate function 若單只使用集合函數, 只傳回單筆紀錄, 如count(*)

Vector aggregate: multiple values returned from SQL query with

aggregate function (via GROUP BY) 若配合GROUP BY將傳回多筆

You can use single-value fields with aggregate functions

if they are included in the GROUP BY clause在GROUP BY子句出現過的欄位才可以調用;因為其他欄位都被合併計算了

Page 46: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-4646

原始表格

SELECT area, count(*)FROM memberGROUP BY area;

SELECT gender, count(*)FROM memberGROUP BY gender;

Page 47: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-4747

原始表格

SELECT gender, education,

count(*) AS ppl

FROM member

GROUP BY gender, education;

Page 48: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-4848

原始表格

SELECT gender, education,

count(*) AS ppl

FROM member

GROUP BY gender, education

ORDER BY count(*) DESC;

Page 49: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-4949

原始表格

SELECT gender, education,

count(*) AS ppl,

max(age)

FROM member

GROUP BY gender, education;

使用不同的函數

Page 50: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-50

SELECT EXAMPLE (7) QUALIFYING RESULTS BY

CATEGORIES USING THE HAVING CLAUSE

For use with GROUP BY

將GROUP BY後的結果再用條件過濾的意思

HAVING語法與WHERE一樣(HAVING在GROUP BY之後做,WHERE在GROUP BY之前做)

Like a WHERE clause, but it operates on groups (categories), not on individual rows. Here, only those groups with total numbers greater than 1 will be included in final result.

Page 51: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-51

A QUERY WITH BOTH WHERE AND

HAVING

Page 52: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-5252

SELECT gender, education,

count(*) AS ppl

FROM member

GROUP BY gender, education

HAVING education='大學';

SELECT gender, education,

count(*) AS ppl

FROM member

GROUP BY gender, education;

HAVING可以想成是GROUP BY後的WHERE

Page 53: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-53

USING AND DEFINING VIEWS

Views provide users controlled access to tables Ex. 限制只可看到某些欄位, 或建立某些常用查詢 (為了方便)

Base Table–table containing the raw data

Dynamic View A “virtual table” created dynamically upon request by a user

No data actually stored; instead data from base table made available

to user

Based on SQL SELECT statement on base tables or other views

Materialized View Copy or replication of data

Data actually stored

Must be refreshed periodically to match corresponding base tables

需資料更新以維持一致性, 故較少用

Page 54: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-54

SAMPLE CREATE VIEW

View has a name.

View is based on a SELECT statement.

可分為 read-only view 或 updateable view (較少使用)

若為updateable view,CHECK_OPTION prevents updates that would create

rows not included in the view.

Page 55: Introduction to SQLhomepage.ntu.edu.tw/~wyang/db2019/slides/db2019_ch06.pdf · Structured Query Language –結構式查詢語言 often pronounced “Sequel” The standard for relational

Chapter 6 6-55

Advantages of Views

Simplify query commands

Provide customized view for user

常用查詢可建立為view

善用view可簡化複雜查詢

Disadvantages of Views

Use processing time each time view is referenced

May or may not be directly updateable

處理速度可能稍慢

有些RDBMS不支援updateable view