SlideShare a Scribd company logo
1
© Prentice Hall, 2002
Chapter 7:Chapter 7:
SQLSQL
Modern Database Management
6th
Edition
Jeffrey A. Hoffer, Mary B. Prescott, Fred R.
McFadden
2Chapter 7 © Prentice Hall,
SQL Is:SQL Is:
 Structured Query Language
 The standard for relational database management
systems (RDBMS)
 SQL-92 Standard -- Purpose:
– Specify syntax/semantics for data definition and
manipulation
– Define data structures
– Enable portability
– Specify minimal (level 1) and complete (level 2)
standards
– Allow for later growth/enhancement to standard
3Chapter 7 © Prentice Hall,
Benefits of a StandardizedBenefits of a Standardized
Relational LanguageRelational Language
Reduced training costs
Productivity
Application portability
Application longevity
Reduced dependence on a single vendor
Cross-system communication
4Chapter 7 © Prentice Hall,
SQL EnvironmentSQL 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
5Chapter 7 © Prentice Hall,
Figure 7-1:
A simplified schematic of a typical SQL environment, as
described by the SQL-92 standard
6Chapter 7 © Prentice Hall,
SQL Data types (from Oracle8)SQL Data types (from Oracle8)
 String types
– CHAR(n) – fixed-length character data, n characters long
Maximum length = 2000 bytes
– VARCHAR2(n) – variable length character data, maximum 4000
bytes
– LONG – variable-length character data, up to 4GB. Maximum 1
per table
 Numeric types
– NUMBER(p,q) – general purpose numeric data type
– INTEGER(p) – signed integer, p digits wide
– FLOAT(p) – floating point in scientific notation with p binary
digits precision
 Date/time type
– DATE – fixed-length date/time in dd-mm-yy form
7Chapter 7 © Prentice Hall,
Figure 7-4:
DDL, DML, DCL, and the database development process
8Chapter 7 © Prentice Hall,
SQL Database DefinitionSQL 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 table and its columns
– CREATE VIEW – defines a logical table from one or
more views
 Other CREATE statements: CHARACTER SET,
COLLATION, TRANSLATION, ASSERTION,
DOMAIN
9Chapter 7 © Prentice Hall,
Table CreationTable Creation
Figure 7-5: General syntax for CREATE TABLE
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
10Chapter 7 © Prentice Hall,
Figure 7-3: Sample Pine Valley Furniture data
customers
orders
order lines
products
11Chapter 7 © Prentice Hall,
Figure 7-6: SQL database definition commands for Pine Valley Furniture
12Chapter 7 © Prentice Hall,
Figure 7-6: SQL database definition commands for Pine Valley Furniture
Defining
attributes and
their data types
13Chapter 7 © Prentice Hall,
Figure 7-6: SQL database definition commands for Pine Valley Furniture
Non-nullable
specifications
Note: primary
keys should not
be null
14Chapter 7 © Prentice Hall,
Figure 7-6: SQL database definition commands for Pine Valley Furniture
Identifying
primary keys
This is a composite
primary key
15Chapter 7 © Prentice Hall,
Figure 7-6: SQL database definition commands for Pine Valley Furniture
Identifying
foreign keys and
establishing
relationships
16Chapter 7 © Prentice Hall,
Figure 7-6: SQL database definition commands for Pine Valley Furniture
Default values
and domain
constraints
17Chapter 7 © Prentice Hall,
Figure 7-6: SQL database definition commands for Pine Valley Furniture
Overall table
definitions
18Chapter 7 © Prentice Hall,
Using and Defining ViewsUsing and Defining Views
Views provide users controlled access to
tables
Advantages of views:
– Simplify query commands
– Provide data security
– Enhance programming productivity
CREATE VIEW command
19Chapter 7 © Prentice Hall,
View TerminologyView Terminology
 Base Table
– A 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 the corresponding
base tables
20Chapter 7 © Prentice Hall,
Sample CREATE VIEWSample CREATE VIEW
 CREATE VIEW EXPENSIVE_STUFF_V AS
 SELECT PRODUCT_ID, PRODUCT_NAME, UNIT_PRICE
 FROM PRODUCT_T
 WHERE UNIT_PRICE >300
 WITH CHECK_OPTION;
•View has a name
•View is based on a SELECT statement
•CHECK_OPTION works only for updateable views and
prevents updates that would create rows not included in the
view
21Chapter 7 © Prentice Hall,
Table 7-2: Pros and Cons of Using Dynamic Views
22Chapter 7 © Prentice Hall,
Data Integrity ControlsData 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
23Chapter 7 © Prentice Hall,
Figure 7-7: Ensuring data integrity through updates
24Chapter 7 © Prentice Hall,
Changing and RemovingChanging and Removing
TablesTables
ALTER TABLE statement allows you to
change column specifications:
– ALTER TABLE CUSTOMER_T ADD (TYPE
VARCHAR(2))
DROP TABLE statement allows you to
remove tables from your schema:
– DROP TABLE CUSTOMER_T
25Chapter 7 © Prentice Hall,
Schema DefinitionSchema Definition
 Control processing/storage efficiency:
– Choice of indexes
– File organizations for base tables
– File organizations for indexes
– Data clustering
– Statistics maintenance
 Creating indexes
– Speed up random/sequential access to base table data
– Example
 CREATE INDEX NAME_IDX ON
CUSTOMER_T(CUSTOMER_NAME)
 This makes an index for the CUSTOMER_NAME field of the
CUSTOMER_T table
26Chapter 7 © Prentice Hall,
Insert StatementInsert Statement
 Adds data to a table
 Inserting into a table
– INSERT INTO CUSTOMER_T VALUES (001, ‘CONTEMPORARY
Casuals’, 1355 S. Himes Blvd.’, ‘Gainesville’, ‘FL’, 32601);
 Inserting a record that has some null attributes requires identifying the
fields that actually get data
– INSERT INTO PRODUCT_T (PRODUCT_ID,
PRODUCT_DESCRIPTION,PRODUCT_FINISH, STANDARD_PRICE,
PRODUCT_ON_HAND) VALUES (1, ‘End Table’, ‘Cherry’, 175, 8);
 Inserting from another table
– INSERT INTO CA_CUSTOMER_T SELECT * FROM CUSTOMER_T WHERE
STATE = ‘CA’;
27Chapter 7 © Prentice Hall,
Delete StatementDelete Statement
Removes rows from a table
Delete certain rows
– DELETE FROM CUSTOMER_T WHERE
STATE = ‘HI’;
Delete all rows
– DELETE FROM CUSTOMER_T;
28Chapter 7 © Prentice Hall,
Update StatementUpdate Statement
Modifies data in existing rows
 UPDATE PRODUCT_T SET UNIT_PRICE = 775
WHERE PRODUCT_ID = 7;
29Chapter 7 © Prentice Hall,
The SELECT StatementThe SELECT Statement
 Used for queries on single or multiple tables
 Clauses of the SELECT statement:
– SELECT
 List the columns (and expressions) that should 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
30Chapter 7 © Prentice Hall,
Figure 7-8: SQL
statement
processing order
(adapted from
van der Lans,
p.100)
31Chapter 7 © Prentice Hall,
SELECT ExampleSELECT Example
Find products with standard price less than $275
 SELECT PRODUCT_NAME, STANDARD_PRICE
 FROM PRODUCT_V
 WHERE STANDARD_PRICE < 275
Table 7-3: Comparison Operators in SQL
32Chapter 7 © Prentice Hall,
SELECT Example with ALIASSELECT Example with ALIAS
Alias is an alternative column or table name
SELECT CUST.CUSTOMER AS NAME,
CUST.CUSTOMER_ADDRESS
FROM CUSTOMER_V CUST
WHERE NAME = ‘Home Furnishings’;
33Chapter 7 © Prentice Hall,
SELECT ExampleSELECT Example
Using a FunctionUsing a Function
Using the COUNT aggregate function to find
totals
SELECT COUNT(*) FROM ORDER_LINE_V
WHERE ORDER_ID = 1004;
Note: with aggregate functions you can’t have single-
valued columns included in the SELECT clause
34Chapter 7 © Prentice Hall,
SELECT Example – Boolean OperatorsSELECT Example – Boolean Operators
 AND, OR, and NOT Operators for customizing
conditions in WHERE clause
 SELECT PRODUCT_DESCRIPTION,
PRODUCT_FINISH, STANDARD_PRICE
 FROM PRODUCT_V
 WHERE (PRODUCT_DESCRIPTION LIKE ‘%Desk’
 OR PRODUCT_DESCRIPTION LIKE ‘%Table’)
 AND UNIT_PRICE > 300;
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
35Chapter 7 © Prentice Hall,
SELECT Example –SELECT Example –
Sorting Results with the ORDER BY ClauseSorting Results with the ORDER BY Clause
Sort the results first by STATE, and within a state
by CUSTOMER_NAME
SELECT CUSTOMER_NAME, CITY, STATE
FROM CUSTOMER_V
WHERE STATE IN (‘FL’, ‘TX’, ‘CA’, ‘HI’)
ORDER BY STATE, CUSTOMER_NAME;
Note: the IN operator in this example allows you to include rows whose
STATE value is either FL, TX, CA, or HI. It is more efficient than separate
OR conditions
36Chapter 7 © Prentice Hall,
SELECT Example –SELECT Example –
Categorizing Results Using the GROUP BY ClauseCategorizing Results Using the GROUP BY Clause
 For use with aggregate functions
– Scalar aggregate: single value returned from SQL query with
aggregate function
– Vector aggregate: multiple values returned from SQL query with
aggregate function (via GROUP BY)
SELECT STATE, COUNT(STATE)
FROM CUSTOMER_V
GROUP BY STATE;
Note: you can use single-value fields with aggregate
functions if they are included in the GROUP BY clause
37Chapter 7 © Prentice Hall,
SELECT Example –SELECT Example –
Qualifying Results by CategoriesQualifying Results by Categories
Using the HAVING ClauseUsing the HAVING Clause
For use with GROUP BY
SELECT STATE, COUNT(STATE)
FROM CUSTOMER_V
GROUP BY STATE
HAVING COUNT(STATE) > 1;
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

More Related Content

What's hot

SQL
SQLSQL
SQL Queries Information
SQL Queries InformationSQL Queries Information
SQL Queries Information
Nishant Munjal
 
Procedure and Functions in pl/sql
Procedure and Functions in pl/sqlProcedure and Functions in pl/sql
Procedure and Functions in pl/sql
Ñirmal Tatiwal
 
Fundamental principle of counting- ch 6 - Discrete Mathematics
Fundamental principle of counting- ch 6 - Discrete MathematicsFundamental principle of counting- ch 6 - Discrete Mathematics
Fundamental principle of counting- ch 6 - Discrete Mathematics
Omnia A. Abdullah
 
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
DrkhanchanaR
 
Single row functions
Single row functionsSingle row functions
Single row functions
Balqees Al.Mubarak
 
Relational algebra-and-relational-calculus
Relational algebra-and-relational-calculusRelational algebra-and-relational-calculus
Relational algebra-and-relational-calculus
Salman Vadsarya
 
Sparse matrix and its representation data structure
Sparse matrix and its representation data structureSparse matrix and its representation data structure
Sparse matrix and its representation data structure
Vardhil Patel
 
What is Link list? explained with animations
What is Link list? explained with animationsWhat is Link list? explained with animations
What is Link list? explained with animations
PratikNaik41
 
Microsoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And FilteringMicrosoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And Filtering
Marc Morgenstern
 
The principle of inclusion and exclusion for three sets by sharvari
The principle of inclusion and exclusion for three sets by sharvariThe principle of inclusion and exclusion for three sets by sharvari
The principle of inclusion and exclusion for three sets by sharvari
Deogiri College Student
 
Row Space,Column Space and Null Space & Rank and Nullity
Row Space,Column Space and Null Space & Rank and NullityRow Space,Column Space and Null Space & Rank and Nullity
Row Space,Column Space and Null Space & Rank and Nullity
Parthivpal17
 
ppt on pointers
ppt on pointersppt on pointers
ppt on pointers
Riddhi Patel
 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL Commands
Shrija Madhu
 
C++ Arrays
C++ ArraysC++ Arrays
C++ Arrays
أحمد محمد
 
Sql task answers
Sql task answersSql task answers
Sql task answers
Nawaz Sk
 
3. Relational Models in DBMS
3. Relational Models in DBMS3. Relational Models in DBMS
3. Relational Models in DBMSkoolkampus
 
Graph theory Eulerian graph
Graph theory Eulerian graphGraph theory Eulerian graph
Graph theory Eulerian graph
rajeshree nanaware
 
Maximal and minimal elements of poset.pptx
Maximal and minimal elements of poset.pptxMaximal and minimal elements of poset.pptx
Maximal and minimal elements of poset.pptx
Kiran Kumar Malik
 

What's hot (20)

SQL
SQLSQL
SQL
 
SQL Queries Information
SQL Queries InformationSQL Queries Information
SQL Queries Information
 
Procedure and Functions in pl/sql
Procedure and Functions in pl/sqlProcedure and Functions in pl/sql
Procedure and Functions in pl/sql
 
Fundamental principle of counting- ch 6 - Discrete Mathematics
Fundamental principle of counting- ch 6 - Discrete MathematicsFundamental principle of counting- ch 6 - Discrete Mathematics
Fundamental principle of counting- ch 6 - Discrete Mathematics
 
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
 
Sql select
Sql select Sql select
Sql select
 
Single row functions
Single row functionsSingle row functions
Single row functions
 
Relational algebra-and-relational-calculus
Relational algebra-and-relational-calculusRelational algebra-and-relational-calculus
Relational algebra-and-relational-calculus
 
Sparse matrix and its representation data structure
Sparse matrix and its representation data structureSparse matrix and its representation data structure
Sparse matrix and its representation data structure
 
What is Link list? explained with animations
What is Link list? explained with animationsWhat is Link list? explained with animations
What is Link list? explained with animations
 
Microsoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And FilteringMicrosoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And Filtering
 
The principle of inclusion and exclusion for three sets by sharvari
The principle of inclusion and exclusion for three sets by sharvariThe principle of inclusion and exclusion for three sets by sharvari
The principle of inclusion and exclusion for three sets by sharvari
 
Row Space,Column Space and Null Space & Rank and Nullity
Row Space,Column Space and Null Space & Rank and NullityRow Space,Column Space and Null Space & Rank and Nullity
Row Space,Column Space and Null Space & Rank and Nullity
 
ppt on pointers
ppt on pointersppt on pointers
ppt on pointers
 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL Commands
 
C++ Arrays
C++ ArraysC++ Arrays
C++ Arrays
 
Sql task answers
Sql task answersSql task answers
Sql task answers
 
3. Relational Models in DBMS
3. Relational Models in DBMS3. Relational Models in DBMS
3. Relational Models in DBMS
 
Graph theory Eulerian graph
Graph theory Eulerian graphGraph theory Eulerian graph
Graph theory Eulerian graph
 
Maximal and minimal elements of poset.pptx
Maximal and minimal elements of poset.pptxMaximal and minimal elements of poset.pptx
Maximal and minimal elements of poset.pptx
 

Similar to The Database Environment Chapter 7

chap 7.ppt(sql).ppt
chap 7.ppt(sql).pptchap 7.ppt(sql).ppt
chap 7.ppt(sql).ppt
arjun431527
 
Sql server T-sql basics ppt-3
Sql server T-sql basics  ppt-3Sql server T-sql basics  ppt-3
Sql server T-sql basics ppt-3
Vibrant Technologies & Computers
 
SQL Inteoduction to SQL manipulating of data
SQL Inteoduction to SQL manipulating of data   SQL Inteoduction to SQL manipulating of data
SQL Inteoduction to SQL manipulating of data
Vibrant Technologies & Computers
 
MIS5101 WK10 Outcome Measures
MIS5101 WK10 Outcome MeasuresMIS5101 WK10 Outcome Measures
MIS5101 WK10 Outcome Measures
Steven Johnson
 
SQL.ppt
SQL.pptSQL.ppt
PPT SQL CLASS.pptx
PPT SQL CLASS.pptxPPT SQL CLASS.pptx
PPT SQL CLASS.pptx
AngeOuattara
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
RishabhAgarwal383497
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
akamkhalidmohammed
 
SQLPpt.ppt
SQLPpt.pptSQLPpt.ppt
SQLPpt.ppt
MBKRAO1
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
AYESHABIBI83
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
Rick134121
 
SQLB1.ppt
SQLB1.pptSQLB1.ppt
SQLB1.ppt
AnshumanJadhav3
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
AnandKonj1
 
Whats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database CapabilitiesWhats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database Capabilities
SAP Technology
 
TSQL in SQL Server 2012
TSQL in SQL Server 2012TSQL in SQL Server 2012
TSQL in SQL Server 2012
Eduardo Castro
 
05_DP_300T00A_Optimize.pptx
05_DP_300T00A_Optimize.pptx05_DP_300T00A_Optimize.pptx
05_DP_300T00A_Optimize.pptx
KareemBullard1
 

Similar to The Database Environment Chapter 7 (20)

chap 7.ppt(sql).ppt
chap 7.ppt(sql).pptchap 7.ppt(sql).ppt
chap 7.ppt(sql).ppt
 
Ch 9 S Q L
Ch 9  S Q LCh 9  S Q L
Ch 9 S Q L
 
Chap 7
Chap 7Chap 7
Chap 7
 
Sql server T-sql basics ppt-3
Sql server T-sql basics  ppt-3Sql server T-sql basics  ppt-3
Sql server T-sql basics ppt-3
 
Review of SQL
Review of SQLReview of SQL
Review of SQL
 
SQL Inteoduction to SQL manipulating of data
SQL Inteoduction to SQL manipulating of data   SQL Inteoduction to SQL manipulating of data
SQL Inteoduction to SQL manipulating of data
 
MIS5101 WK10 Outcome Measures
MIS5101 WK10 Outcome MeasuresMIS5101 WK10 Outcome Measures
MIS5101 WK10 Outcome Measures
 
SQL.ppt
SQL.pptSQL.ppt
SQL.ppt
 
PPT SQL CLASS.pptx
PPT SQL CLASS.pptxPPT SQL CLASS.pptx
PPT SQL CLASS.pptx
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
 
SQLPpt.ppt
SQLPpt.pptSQLPpt.ppt
SQLPpt.ppt
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
 
SQLB1.ppt
SQLB1.pptSQLB1.ppt
SQLB1.ppt
 
hoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppthoffer_edm_pp_ch06.ppt
hoffer_edm_pp_ch06.ppt
 
Whats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database CapabilitiesWhats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database Capabilities
 
SQL(database)
SQL(database)SQL(database)
SQL(database)
 
TSQL in SQL Server 2012
TSQL in SQL Server 2012TSQL in SQL Server 2012
TSQL in SQL Server 2012
 
05_DP_300T00A_Optimize.pptx
05_DP_300T00A_Optimize.pptx05_DP_300T00A_Optimize.pptx
05_DP_300T00A_Optimize.pptx
 

More from Jeanie Arnoco

The Database Environment Chapter 15
The Database Environment Chapter 15The Database Environment Chapter 15
The Database Environment Chapter 15
Jeanie Arnoco
 
The Database Environment Chapter 14
The Database Environment Chapter 14The Database Environment Chapter 14
The Database Environment Chapter 14
Jeanie Arnoco
 
The Database Environment Chapter 13
The Database Environment Chapter 13The Database Environment Chapter 13
The Database Environment Chapter 13
Jeanie Arnoco
 
The Database Environment Chapter 12
The Database Environment Chapter 12The Database Environment Chapter 12
The Database Environment Chapter 12
Jeanie Arnoco
 
The Database Environment Chapter 11
The Database Environment Chapter 11The Database Environment Chapter 11
The Database Environment Chapter 11
Jeanie Arnoco
 
The Database Environment Chapter 10
The Database Environment Chapter 10The Database Environment Chapter 10
The Database Environment Chapter 10
Jeanie Arnoco
 
The Database Environment Chapter 9
The Database Environment Chapter 9The Database Environment Chapter 9
The Database Environment Chapter 9
Jeanie Arnoco
 
The Database Environment Chapter 8
The Database Environment Chapter 8The Database Environment Chapter 8
The Database Environment Chapter 8
Jeanie Arnoco
 
The Database Environment Chapter 6
The Database Environment Chapter 6The Database Environment Chapter 6
The Database Environment Chapter 6
Jeanie Arnoco
 
The Database Environment Chapter 5
The Database Environment Chapter 5The Database Environment Chapter 5
The Database Environment Chapter 5
Jeanie Arnoco
 
The Database Environment Chapter 4
The Database Environment Chapter 4The Database Environment Chapter 4
The Database Environment Chapter 4
Jeanie Arnoco
 
The Database Environment Chapter 3
The Database Environment Chapter 3The Database Environment Chapter 3
The Database Environment Chapter 3
Jeanie Arnoco
 
The Database Environment Chapter 2
The Database Environment Chapter 2The Database Environment Chapter 2
The Database Environment Chapter 2
Jeanie Arnoco
 
The Database Environment Chapter 1
The Database Environment Chapter 1The Database Environment Chapter 1
The Database Environment Chapter 1
Jeanie Arnoco
 
Introduction to BOOTSTRAP
Introduction to BOOTSTRAPIntroduction to BOOTSTRAP
Introduction to BOOTSTRAP
Jeanie Arnoco
 
Introduction to programming using Visual Basic 6
Introduction to programming using Visual Basic 6Introduction to programming using Visual Basic 6
Introduction to programming using Visual Basic 6
Jeanie Arnoco
 
Hacking and Online Security
Hacking and Online SecurityHacking and Online Security
Hacking and Online Security
Jeanie Arnoco
 
(CAR)Cordillera Administrative Region
(CAR)Cordillera Administrative Region (CAR)Cordillera Administrative Region
(CAR)Cordillera Administrative Region
Jeanie Arnoco
 
Quick sort-Data Structure
Quick sort-Data StructureQuick sort-Data Structure
Quick sort-Data Structure
Jeanie Arnoco
 
Quality Gurus Student
Quality Gurus StudentQuality Gurus Student
Quality Gurus Student
Jeanie Arnoco
 

More from Jeanie Arnoco (20)

The Database Environment Chapter 15
The Database Environment Chapter 15The Database Environment Chapter 15
The Database Environment Chapter 15
 
The Database Environment Chapter 14
The Database Environment Chapter 14The Database Environment Chapter 14
The Database Environment Chapter 14
 
The Database Environment Chapter 13
The Database Environment Chapter 13The Database Environment Chapter 13
The Database Environment Chapter 13
 
The Database Environment Chapter 12
The Database Environment Chapter 12The Database Environment Chapter 12
The Database Environment Chapter 12
 
The Database Environment Chapter 11
The Database Environment Chapter 11The Database Environment Chapter 11
The Database Environment Chapter 11
 
The Database Environment Chapter 10
The Database Environment Chapter 10The Database Environment Chapter 10
The Database Environment Chapter 10
 
The Database Environment Chapter 9
The Database Environment Chapter 9The Database Environment Chapter 9
The Database Environment Chapter 9
 
The Database Environment Chapter 8
The Database Environment Chapter 8The Database Environment Chapter 8
The Database Environment Chapter 8
 
The Database Environment Chapter 6
The Database Environment Chapter 6The Database Environment Chapter 6
The Database Environment Chapter 6
 
The Database Environment Chapter 5
The Database Environment Chapter 5The Database Environment Chapter 5
The Database Environment Chapter 5
 
The Database Environment Chapter 4
The Database Environment Chapter 4The Database Environment Chapter 4
The Database Environment Chapter 4
 
The Database Environment Chapter 3
The Database Environment Chapter 3The Database Environment Chapter 3
The Database Environment Chapter 3
 
The Database Environment Chapter 2
The Database Environment Chapter 2The Database Environment Chapter 2
The Database Environment Chapter 2
 
The Database Environment Chapter 1
The Database Environment Chapter 1The Database Environment Chapter 1
The Database Environment Chapter 1
 
Introduction to BOOTSTRAP
Introduction to BOOTSTRAPIntroduction to BOOTSTRAP
Introduction to BOOTSTRAP
 
Introduction to programming using Visual Basic 6
Introduction to programming using Visual Basic 6Introduction to programming using Visual Basic 6
Introduction to programming using Visual Basic 6
 
Hacking and Online Security
Hacking and Online SecurityHacking and Online Security
Hacking and Online Security
 
(CAR)Cordillera Administrative Region
(CAR)Cordillera Administrative Region (CAR)Cordillera Administrative Region
(CAR)Cordillera Administrative Region
 
Quick sort-Data Structure
Quick sort-Data StructureQuick sort-Data Structure
Quick sort-Data Structure
 
Quality Gurus Student
Quality Gurus StudentQuality Gurus Student
Quality Gurus Student
 

Recently uploaded

Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
Vivekanand Anglo Vedic Academy
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
PedroFerreira53928
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdfESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
Fundacja Rozwoju Społeczeństwa Przedsiębiorczego
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
Celine George
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
EduSkills OECD
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 

Recently uploaded (20)

Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdfESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 

The Database Environment Chapter 7

  • 1. 1 © Prentice Hall, 2002 Chapter 7:Chapter 7: SQLSQL Modern Database Management 6th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden
  • 2. 2Chapter 7 © Prentice Hall, SQL Is:SQL Is:  Structured Query Language  The standard for relational database management systems (RDBMS)  SQL-92 Standard -- Purpose: – Specify syntax/semantics for data definition and manipulation – Define data structures – Enable portability – Specify minimal (level 1) and complete (level 2) standards – Allow for later growth/enhancement to standard
  • 3. 3Chapter 7 © Prentice Hall, Benefits of a StandardizedBenefits of a Standardized Relational LanguageRelational Language Reduced training costs Productivity Application portability Application longevity Reduced dependence on a single vendor Cross-system communication
  • 4. 4Chapter 7 © Prentice Hall, SQL EnvironmentSQL 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
  • 5. 5Chapter 7 © Prentice Hall, Figure 7-1: A simplified schematic of a typical SQL environment, as described by the SQL-92 standard
  • 6. 6Chapter 7 © Prentice Hall, SQL Data types (from Oracle8)SQL Data types (from Oracle8)  String types – CHAR(n) – fixed-length character data, n characters long Maximum length = 2000 bytes – VARCHAR2(n) – variable length character data, maximum 4000 bytes – LONG – variable-length character data, up to 4GB. Maximum 1 per table  Numeric types – NUMBER(p,q) – general purpose numeric data type – INTEGER(p) – signed integer, p digits wide – FLOAT(p) – floating point in scientific notation with p binary digits precision  Date/time type – DATE – fixed-length date/time in dd-mm-yy form
  • 7. 7Chapter 7 © Prentice Hall, Figure 7-4: DDL, DML, DCL, and the database development process
  • 8. 8Chapter 7 © Prentice Hall, SQL Database DefinitionSQL 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 table and its columns – CREATE VIEW – defines a logical table from one or more views  Other CREATE statements: CHARACTER SET, COLLATION, TRANSLATION, ASSERTION, DOMAIN
  • 9. 9Chapter 7 © Prentice Hall, Table CreationTable Creation Figure 7-5: General syntax for CREATE TABLE 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
  • 10. 10Chapter 7 © Prentice Hall, Figure 7-3: Sample Pine Valley Furniture data customers orders order lines products
  • 11. 11Chapter 7 © Prentice Hall, Figure 7-6: SQL database definition commands for Pine Valley Furniture
  • 12. 12Chapter 7 © Prentice Hall, Figure 7-6: SQL database definition commands for Pine Valley Furniture Defining attributes and their data types
  • 13. 13Chapter 7 © Prentice Hall, Figure 7-6: SQL database definition commands for Pine Valley Furniture Non-nullable specifications Note: primary keys should not be null
  • 14. 14Chapter 7 © Prentice Hall, Figure 7-6: SQL database definition commands for Pine Valley Furniture Identifying primary keys This is a composite primary key
  • 15. 15Chapter 7 © Prentice Hall, Figure 7-6: SQL database definition commands for Pine Valley Furniture Identifying foreign keys and establishing relationships
  • 16. 16Chapter 7 © Prentice Hall, Figure 7-6: SQL database definition commands for Pine Valley Furniture Default values and domain constraints
  • 17. 17Chapter 7 © Prentice Hall, Figure 7-6: SQL database definition commands for Pine Valley Furniture Overall table definitions
  • 18. 18Chapter 7 © Prentice Hall, Using and Defining ViewsUsing and Defining Views Views provide users controlled access to tables Advantages of views: – Simplify query commands – Provide data security – Enhance programming productivity CREATE VIEW command
  • 19. 19Chapter 7 © Prentice Hall, View TerminologyView Terminology  Base Table – A 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 the corresponding base tables
  • 20. 20Chapter 7 © Prentice Hall, Sample CREATE VIEWSample CREATE VIEW  CREATE VIEW EXPENSIVE_STUFF_V AS  SELECT PRODUCT_ID, PRODUCT_NAME, UNIT_PRICE  FROM PRODUCT_T  WHERE UNIT_PRICE >300  WITH CHECK_OPTION; •View has a name •View is based on a SELECT statement •CHECK_OPTION works only for updateable views and prevents updates that would create rows not included in the view
  • 21. 21Chapter 7 © Prentice Hall, Table 7-2: Pros and Cons of Using Dynamic Views
  • 22. 22Chapter 7 © Prentice Hall, Data Integrity ControlsData 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
  • 23. 23Chapter 7 © Prentice Hall, Figure 7-7: Ensuring data integrity through updates
  • 24. 24Chapter 7 © Prentice Hall, Changing and RemovingChanging and Removing TablesTables ALTER TABLE statement allows you to change column specifications: – ALTER TABLE CUSTOMER_T ADD (TYPE VARCHAR(2)) DROP TABLE statement allows you to remove tables from your schema: – DROP TABLE CUSTOMER_T
  • 25. 25Chapter 7 © Prentice Hall, Schema DefinitionSchema Definition  Control processing/storage efficiency: – Choice of indexes – File organizations for base tables – File organizations for indexes – Data clustering – Statistics maintenance  Creating indexes – Speed up random/sequential access to base table data – Example  CREATE INDEX NAME_IDX ON CUSTOMER_T(CUSTOMER_NAME)  This makes an index for the CUSTOMER_NAME field of the CUSTOMER_T table
  • 26. 26Chapter 7 © Prentice Hall, Insert StatementInsert Statement  Adds data to a table  Inserting into a table – INSERT INTO CUSTOMER_T VALUES (001, ‘CONTEMPORARY Casuals’, 1355 S. Himes Blvd.’, ‘Gainesville’, ‘FL’, 32601);  Inserting a record that has some null attributes requires identifying the fields that actually get data – INSERT INTO PRODUCT_T (PRODUCT_ID, PRODUCT_DESCRIPTION,PRODUCT_FINISH, STANDARD_PRICE, PRODUCT_ON_HAND) VALUES (1, ‘End Table’, ‘Cherry’, 175, 8);  Inserting from another table – INSERT INTO CA_CUSTOMER_T SELECT * FROM CUSTOMER_T WHERE STATE = ‘CA’;
  • 27. 27Chapter 7 © Prentice Hall, Delete StatementDelete Statement Removes rows from a table Delete certain rows – DELETE FROM CUSTOMER_T WHERE STATE = ‘HI’; Delete all rows – DELETE FROM CUSTOMER_T;
  • 28. 28Chapter 7 © Prentice Hall, Update StatementUpdate Statement Modifies data in existing rows  UPDATE PRODUCT_T SET UNIT_PRICE = 775 WHERE PRODUCT_ID = 7;
  • 29. 29Chapter 7 © Prentice Hall, The SELECT StatementThe SELECT Statement  Used for queries on single or multiple tables  Clauses of the SELECT statement: – SELECT  List the columns (and expressions) that should 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
  • 30. 30Chapter 7 © Prentice Hall, Figure 7-8: SQL statement processing order (adapted from van der Lans, p.100)
  • 31. 31Chapter 7 © Prentice Hall, SELECT ExampleSELECT Example Find products with standard price less than $275  SELECT PRODUCT_NAME, STANDARD_PRICE  FROM PRODUCT_V  WHERE STANDARD_PRICE < 275 Table 7-3: Comparison Operators in SQL
  • 32. 32Chapter 7 © Prentice Hall, SELECT Example with ALIASSELECT Example with ALIAS Alias is an alternative column or table name SELECT CUST.CUSTOMER AS NAME, CUST.CUSTOMER_ADDRESS FROM CUSTOMER_V CUST WHERE NAME = ‘Home Furnishings’;
  • 33. 33Chapter 7 © Prentice Hall, SELECT ExampleSELECT Example Using a FunctionUsing a Function Using the COUNT aggregate function to find totals SELECT COUNT(*) FROM ORDER_LINE_V WHERE ORDER_ID = 1004; Note: with aggregate functions you can’t have single- valued columns included in the SELECT clause
  • 34. 34Chapter 7 © Prentice Hall, SELECT Example – Boolean OperatorsSELECT Example – Boolean Operators  AND, OR, and NOT Operators for customizing conditions in WHERE clause  SELECT PRODUCT_DESCRIPTION, PRODUCT_FINISH, STANDARD_PRICE  FROM PRODUCT_V  WHERE (PRODUCT_DESCRIPTION LIKE ‘%Desk’  OR PRODUCT_DESCRIPTION LIKE ‘%Table’)  AND UNIT_PRICE > 300; 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
  • 35. 35Chapter 7 © Prentice Hall, SELECT Example –SELECT Example – Sorting Results with the ORDER BY ClauseSorting Results with the ORDER BY Clause Sort the results first by STATE, and within a state by CUSTOMER_NAME SELECT CUSTOMER_NAME, CITY, STATE FROM CUSTOMER_V WHERE STATE IN (‘FL’, ‘TX’, ‘CA’, ‘HI’) ORDER BY STATE, CUSTOMER_NAME; Note: the IN operator in this example allows you to include rows whose STATE value is either FL, TX, CA, or HI. It is more efficient than separate OR conditions
  • 36. 36Chapter 7 © Prentice Hall, SELECT Example –SELECT Example – Categorizing Results Using the GROUP BY ClauseCategorizing Results Using the GROUP BY Clause  For use with aggregate functions – Scalar aggregate: single value returned from SQL query with aggregate function – Vector aggregate: multiple values returned from SQL query with aggregate function (via GROUP BY) SELECT STATE, COUNT(STATE) FROM CUSTOMER_V GROUP BY STATE; Note: you can use single-value fields with aggregate functions if they are included in the GROUP BY clause
  • 37. 37Chapter 7 © Prentice Hall, SELECT Example –SELECT Example – Qualifying Results by CategoriesQualifying Results by Categories Using the HAVING ClauseUsing the HAVING Clause For use with GROUP BY SELECT STATE, COUNT(STATE) FROM CUSTOMER_V GROUP BY STATE HAVING COUNT(STATE) > 1; 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