SlideShare a Scribd company logo
1 of 40
SQL: Data Manipulation
Chapter 6
Objectives of SQL
• Create the database and relation structures;
• Perform basic data management tasks, such as the insertion,
modification, and deletion of data from the relations;
• Perform both simple and complex queries.
• A database language must perform these tasks with minimal user
effort.
• Its command structure and syntax must be relatively easy to learn.
• The language must be portable
• SQL is intended to satisfy these requirements.
ISO SQL standard has two major components:
• Data Definition Language (DDL) for defining the database structure
and controlling access to the data;
• Data Manipulation Language (DML) for retrieving and updating data.
• SQL is a relatively easy language to learn:
• It is a nonprocedural language; you specify what information you
require, rather
• than how to get it. In other words, SQL does not require you to
specify the access methods to the data.
• The command structure consists of standard English words such as
CREATE TABLE, INSERT, SELECT. For example:
• CREATE TABLE Staff (staffNo VARCHAR(5), IName VARCHAR(15),
salary DECIMAL(7,2));
• INSERT INTO Staff VALUES (‘SG16’, ‘Brown’, 8300);
• SELECT staffNo, IName, salary
FROM Staff
WHERE salary > 10000;
• Most components of an SQL statement are case-insensitive
• The one important exception to this rule is that literal character data
must be typed exactly as it appears in the database.
• “SMITH”
• “Smith,”
• SQL is free-format
Data Manipulation
• SELECT – to query data in the database (view information)
• INSERT – to insert data into a table
• UPDATE – to update data in a table
• DELETE – to delete data from a table
DreamHome case study
• Branch (branchNo, street, city, postcode)
• Staff (staffNo, fName, IName, position, sex, DOB, salary, branchNo)
• PropertyForRent (propertyNo, street, city, postcode, type, rooms, rent, ownerNo,
staffNo,
• branchNo)
• Client (clientNo, fName, IName, telNo, prefType, maxRent, eMail)
• PrivateOwner (ownerNo, fName, IName, address, telNo, eMail, password)
• Viewing (clientNo, propertyNo, viewDate, comment)
Numeric and non-numeric
• INSERT INTO PropertyForRent(propertyNo, street, city, postcode,
type, rooms, rent, ownerNo, staffNo, branchNo)
VALUES (‘PA14’, ‘16 Holhead’, ‘Aberdeen’, ‘AB7 5SU’, ‘House’, 6,
650.00, ‘CO46’, ‘SA9’, ‘B007’);
Simple Queries
• SELECT [DISTINCT | ALL] {* | [columnExpression [AS newName]] [, . . .]}
• FROM TableName [alias] [, . . .]
• [WHERE condition]
• [GROUP BY columnList] [HAVING condition]
• [ORDER BY columnList]
Sequence of processing in a SELECT
statement is:
• FROM specifies the table or tables to be used
• WHERE filters the rows subject to some condition
• GROUP BY forms groups of rows with the same column value
• HAVING filters the groups subject to some condition
• SELECT specifies which columns are to appear in the output
• ORDER BY specifies the order of the output
• Order of the clauses in the SELECT statement cannot be changed
• Mandatory clauses are the first two: SELECT and FROM
• The remainder are optional.
• The result of a query on a table is another table
• There are many variations of this statement
Retrieve all columns, all rows
• SELECT staffNo, fName, IName, position, sex, DOB, salary, branchNo
FROM Staff;
• Order of the attributes can be changed while displaying
• SELECT * FROM Staff;
Retrieve specific columns, all rows
• SELECT staffNo, fName, IName, salary
FROM Staff;
List the property numbers of all properties that
have been viewed.
• SELECT propertyNo
FROM Viewing;
propertyNo
PA14
PG4
PG4
PA14
PG36
• SELECT DISTINCT propertyNo
FROM Viewing;
propertyNo
PA14
PG4
PG36
Calculated fields
• Produce a list of monthly salaries for all staff
• SELECT staffNo, fName, IName, salary/12
FROM Staff;
staffNo fName IName col4
SL21 John White 2500.00
SG37 Ann Beech 1000.00
SG14 David Ford 1500.00
Change of Attribute name
• SELECT staffNo, fName, IName, salary/12 AS monthlySalary
FROM Staff;
staffNo fName IName MonthlySalary
SL21 John White 2500.00
SG37 Ann Beech 1000.00
SG14 David Ford 1500.00
WHERE clause
• Comparison search condition
• List all staff with a salary greater than £10,000.
• SELECT staffNo, fName, IName, position, salary
FROM Staff
WHERE salary > 10000;
Comparison operators
• = equals
• <> is not equal to (ISO standard) ! = is not equal to (allowed in
some dialects)
• < is less than
• < = is less than or equal to
• > is greater than
• > = is greater than or equal to
AND, OR, and NOT
• An expression is evaluated left to right;
• Subexpressions in brackets are evaluated first;
• NOTs are evaluated before ANDs and ORs;
• ANDs are evaluated before ORs.
Compound comparison search condition
• List the addresses of all branch offices in London or Glasgow.
• SELECT * FROM Branch
WHERE city = ‘London’ OR city = ‘Glasgow’; *
• branchNo street city postcode
B005 22 Deer Rd London SW1 4EH
B003 163 Main St Glasgow G11 9QX
B002 56 Clover Dr London NW10 6EU
Range search condition (BETWEEN/NOT
BETWEEN)
• List all staff with a salary between £20,000 and £30,000.
• SELECT staffNo, fName, IName, position, salary FROM Staff
WHERE salary BETWEEN 20000 AND 30000;
• staffNo fName IName position salary
SL21 John White Manager 30000.00
SG5 Susan Brand Manager 24000.00
• SELECT staffNo, fName, IName, position, salary FROM Staff
WHERE salary > = 20000 AND salary < = 30000;
Set membership search condition (IN/NOT IN)
• List all managers and supervisors.
• SELECT staffNo, fName, IName, position FROM Staff
WHERE position IN (‘Manager’, ‘Supervisor’);
• SELECT staffNo, fName, IName, position FROM Staff
WHERE position = ‘Manager’ OR position = ‘Supervisor’;
Pattern match search condition (LIKE/NOT
LIKE)
• The % percent character represents any sequence of zero or more
characters (wildcard).
• The _ underscore character represents any single character.
• SELECT ownerNo, fName, IName, address, telNo FROM PrivateOwner
WHERE address LIKE ‘%Glasgow%’;
• LIKE ‘15#%’ ESCAPE ‘#’
NULL search condition (IS NULL/IS NOT NULL)
• Details of all viewings on property PG4 where a comment has not
been supplied.
• SELECT clientNo, viewDate FROM Viewing
WHERE propertyNo = ‘PG4’ AND comment IS NULL;
Sorting Results (ORDER BY Clause)
• Produce a list of salaries for all staff, arranged in descending order of
salary.
• SELECT staffNo, fName, IName, salary FROM Staff
ORDER BY salary DESC; (ORDER BY 4 DESC)
Multiple column ordering
• SELECT propertyNo, type, rooms, rent FROM PropertyForRent
ORDER BY type, rent DESC;
• propertyNo type rooms rent
PG16 Flat 4 450
PL94 Flat 4 400
PG36 Flat 3 375
PG4 Flat 3 350
PA14 House 6 650
PG21 House 5 600
How many different properties were viewed in
May 2013?
• SELECT COUNT(DISTINCT propertyNo) AS myCount
FROM Viewing
WHERE viewDate BETWEEN ‘1-May-13’ AND ‘31-May-13’;
Find the minimum, maximum, and average staff
salary.
• SELECT MIN(salary) AS myMin, MAX(salary) AS myMax, AVG(salary)
AS myAvg
FROM Staff;
Find the number of staff working in each branch
and the sum of their salaries.
• SELECT branchNo, COUNT(staffNo) AS myCount, SUM(salary) AS mySum
FROM Staff
GROUP BY branchNo
ORDER BY branchNo;
For each branch office with more than one member of staff, find the
number of staff working in each branch and the sum of their salaries.
• SELECT branchNo, COUNT(staffNo) AS myCount, SUM(salary) AS
mySum
FROM Staff
GROUP BY branchNo
HAVING COUNT(staffNo) > 1
ORDER BY branchNo;
List the staff who work in the branch at ‘163 Main St’.
• SELECT staffNo, fName, IName, position
FROM Staff
WHERE branchNo = (SELECT branchNo
FROM Branch
WHERE street = ‘163 Main St’);
List all staff whose salary is greater than the average salary, and show
by how much their salary is greater than the average.
• SELECT staffNo, fName, IName, position,
salary – (SELECT AVG(salary) FROM Staff) AS salDiff
FROM Staff
WHERE salary > (SELECT AVG(salary) FROM Staff);
List the properties that are handled by staff who work in
the branch at ‘163 Main St’.
• SELECT propertyNo, street, city, postcode, type, rooms, rent
FROM PropertyForRent
WHERE staffNo IN (SELECT staffNo
FROM Staff
WHERE branchNo = (SELECT branchNo
FROM Branch
WHERE street = ‘163 Main St’));
Use of ANY/SOME
Find all staff whose salary is larger than the salary
of at least one member of staff at branch B003.
• SELECT staffNo, fName, IName, position, salary
FROM Staff
WHERE salary > SOME (SELECT salary
FROM Staff
WHERE branchNo = ‘B003’);
Simple join
List the names of all clients who have viewed a property, along with any
comments supplied.
• SELECT c.clientNo, fName, IName, propertyNo, comment
• FROM Client c, Viewing v
• WHERE c.clientNo = v.clientNo;
Sorting a join
For each branch office, list the staff numbers and names of staff who
manage properties and the
properties that they manage.
• SELECT s.branchNo, s.staffNo, fName, IName, propertyNo
• FROM Staff s, PropertyForRent p
• WHERE s.staffNo = p.staffNo
• ORDER BY s.branchNo, s.staffNo, propertyNo;
Three-table join
For each branch, list the staff numbers and names of staff who manage
properties, including the city in which the branch is located and the
properties that the staff manage.
• SELECT b.branchNo, b.city, s.staffNo, fName, IName, propertyNo
FROM Branch b, Staff s, PropertyForRent p
WHERE b.branchNo = s.branchNo AND s.staffNo = p.staffNo
ORDER BY b.branchNo, s.staffNo, propertyNo;

More Related Content

Similar to Data Manipulation

Basic SQL Statments
Basic SQL StatmentsBasic SQL Statments
Basic SQL StatmentsUmair Shakir
 
Beginers guide for oracle sql
Beginers guide for oracle sqlBeginers guide for oracle sql
Beginers guide for oracle sqlN.Jagadish Kumar
 
SQL-AGG-FUN.pdfiiiijuyyttfffgyyuyyyyyhhh
SQL-AGG-FUN.pdfiiiijuyyttfffgyyuyyyyyhhhSQL-AGG-FUN.pdfiiiijuyyttfffgyyuyyyyyhhh
SQL-AGG-FUN.pdfiiiijuyyttfffgyyuyyyyyhhhNaveeN547338
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence PortfolioChris Seebacher
 
Database Systems - SQL - DDL Statements (Chapter 3/3)
Database Systems - SQL - DDL Statements (Chapter 3/3)Database Systems - SQL - DDL Statements (Chapter 3/3)
Database Systems - SQL - DDL Statements (Chapter 3/3)Vidyasagar Mundroy
 
Sql Portfolio(March 31)
Sql Portfolio(March 31)Sql Portfolio(March 31)
Sql Portfolio(March 31)iceolated
 
SQL Assessment Command Statements
SQL Assessment Command StatementsSQL Assessment Command Statements
SQL Assessment Command StatementsShaun Wilson
 
Using single row functions to customize output
Using single row functions to customize outputUsing single row functions to customize output
Using single row functions to customize outputSyed Zaid Irshad
 
FOUNDATION OF DATA SCIENCE SQL QUESTIONS
FOUNDATION OF DATA SCIENCE SQL QUESTIONSFOUNDATION OF DATA SCIENCE SQL QUESTIONS
FOUNDATION OF DATA SCIENCE SQL QUESTIONSHITIKAJAIN4
 
Data Exploration with Apache Drill: Day 2
Data Exploration with Apache Drill: Day 2Data Exploration with Apache Drill: Day 2
Data Exploration with Apache Drill: Day 2Charles Givre
 
Chinabankppt
ChinabankpptChinabankppt
Chinabankpptnewrforce
 
Complex Queries using MYSQL00123211.pptx
Complex Queries using MYSQL00123211.pptxComplex Queries using MYSQL00123211.pptx
Complex Queries using MYSQL00123211.pptxmetriohanzel
 

Similar to Data Manipulation (20)

Basic SQL Statments
Basic SQL StatmentsBasic SQL Statments
Basic SQL Statments
 
Sql wksht-1
Sql wksht-1Sql wksht-1
Sql wksht-1
 
DB2 Sql Query
DB2 Sql QueryDB2 Sql Query
DB2 Sql Query
 
Sql Queries
Sql QueriesSql Queries
Sql Queries
 
Beginers guide for oracle sql
Beginers guide for oracle sqlBeginers guide for oracle sql
Beginers guide for oracle sql
 
SQL-AGG-FUN.pdfiiiijuyyttfffgyyuyyyyyhhh
SQL-AGG-FUN.pdfiiiijuyyttfffgyyuyyyyyhhhSQL-AGG-FUN.pdfiiiijuyyttfffgyyuyyyyyhhh
SQL-AGG-FUN.pdfiiiijuyyttfffgyyuyyyyyhhh
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
MS SQL Server
MS SQL ServerMS SQL Server
MS SQL Server
 
Database Systems - SQL - DDL Statements (Chapter 3/3)
Database Systems - SQL - DDL Statements (Chapter 3/3)Database Systems - SQL - DDL Statements (Chapter 3/3)
Database Systems - SQL - DDL Statements (Chapter 3/3)
 
Chapter5.ppt
Chapter5.pptChapter5.ppt
Chapter5.ppt
 
Sql Portfolio(March 31)
Sql Portfolio(March 31)Sql Portfolio(March 31)
Sql Portfolio(March 31)
 
SQL- Introduction to MySQL
SQL- Introduction to MySQLSQL- Introduction to MySQL
SQL- Introduction to MySQL
 
SQL Assessment Command Statements
SQL Assessment Command StatementsSQL Assessment Command Statements
SQL Assessment Command Statements
 
Using single row functions to customize output
Using single row functions to customize outputUsing single row functions to customize output
Using single row functions to customize output
 
FOUNDATION OF DATA SCIENCE SQL QUESTIONS
FOUNDATION OF DATA SCIENCE SQL QUESTIONSFOUNDATION OF DATA SCIENCE SQL QUESTIONS
FOUNDATION OF DATA SCIENCE SQL QUESTIONS
 
Data Exploration with Apache Drill: Day 2
Data Exploration with Apache Drill: Day 2Data Exploration with Apache Drill: Day 2
Data Exploration with Apache Drill: Day 2
 
SQL sheet
SQL sheetSQL sheet
SQL sheet
 
SQL Data Manipulation
SQL Data ManipulationSQL Data Manipulation
SQL Data Manipulation
 
Chinabankppt
ChinabankpptChinabankppt
Chinabankppt
 
Complex Queries using MYSQL00123211.pptx
Complex Queries using MYSQL00123211.pptxComplex Queries using MYSQL00123211.pptx
Complex Queries using MYSQL00123211.pptx
 

Recently uploaded

Spring into AI presented by Dan Vega 5/14
Spring into AI presented by Dan Vega 5/14Spring into AI presented by Dan Vega 5/14
Spring into AI presented by Dan Vega 5/14VMware Tanzu
 
Prompt Engineering - an Art, a Science, or your next Job Title?
Prompt Engineering - an Art, a Science, or your next Job Title?Prompt Engineering - an Art, a Science, or your next Job Title?
Prompt Engineering - an Art, a Science, or your next Job Title?Maxim Salnikov
 
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...naitiksharma1124
 
Transformer Neural Network Use Cases with Links
Transformer Neural Network Use Cases with LinksTransformer Neural Network Use Cases with Links
Transformer Neural Network Use Cases with LinksJinanKordab
 
Lessons Learned from Building a Serverless Notifications System.pdf
Lessons Learned from Building a Serverless Notifications System.pdfLessons Learned from Building a Serverless Notifications System.pdf
Lessons Learned from Building a Serverless Notifications System.pdfSrushith Repakula
 
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024SimonedeGijt
 
Abortion Pills For Sale WhatsApp[[+27737758557]] In Birch Acres, Abortion Pil...
Abortion Pills For Sale WhatsApp[[+27737758557]] In Birch Acres, Abortion Pil...Abortion Pills For Sale WhatsApp[[+27737758557]] In Birch Acres, Abortion Pil...
Abortion Pills For Sale WhatsApp[[+27737758557]] In Birch Acres, Abortion Pil...drm1699
 
From Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptxFrom Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptxNeo4j
 
Modern binary build systems - PyCon 2024
Modern binary build systems - PyCon 2024Modern binary build systems - PyCon 2024
Modern binary build systems - PyCon 2024Henry Schreiner
 
BusinessGPT - Security and Governance for Generative AI
BusinessGPT  - Security and Governance for Generative AIBusinessGPT  - Security and Governance for Generative AI
BusinessGPT - Security and Governance for Generative AIAGATSoftware
 
The Strategic Impact of Buying vs Building in Test Automation
The Strategic Impact of Buying vs Building in Test AutomationThe Strategic Impact of Buying vs Building in Test Automation
The Strategic Impact of Buying vs Building in Test AutomationElement34
 
GraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with GraphGraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with GraphNeo4j
 
Novo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNovo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNeo4j
 
The mythical technical debt. (Brooke, please, forgive me)
The mythical technical debt. (Brooke, please, forgive me)The mythical technical debt. (Brooke, please, forgive me)
The mythical technical debt. (Brooke, please, forgive me)Roberto Bettazzoni
 
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024MulesoftMunichMeetup
 
Community is Just as Important as Code by Andrea Goulet
Community is Just as Important as Code by Andrea GouletCommunity is Just as Important as Code by Andrea Goulet
Community is Just as Important as Code by Andrea GouletAndrea Goulet
 
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale IbridaUNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale IbridaNeo4j
 

Recently uploaded (20)

Spring into AI presented by Dan Vega 5/14
Spring into AI presented by Dan Vega 5/14Spring into AI presented by Dan Vega 5/14
Spring into AI presented by Dan Vega 5/14
 
Prompt Engineering - an Art, a Science, or your next Job Title?
Prompt Engineering - an Art, a Science, or your next Job Title?Prompt Engineering - an Art, a Science, or your next Job Title?
Prompt Engineering - an Art, a Science, or your next Job Title?
 
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
 
Transformer Neural Network Use Cases with Links
Transformer Neural Network Use Cases with LinksTransformer Neural Network Use Cases with Links
Transformer Neural Network Use Cases with Links
 
Lessons Learned from Building a Serverless Notifications System.pdf
Lessons Learned from Building a Serverless Notifications System.pdfLessons Learned from Building a Serverless Notifications System.pdf
Lessons Learned from Building a Serverless Notifications System.pdf
 
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
 
Abortion Pills For Sale WhatsApp[[+27737758557]] In Birch Acres, Abortion Pil...
Abortion Pills For Sale WhatsApp[[+27737758557]] In Birch Acres, Abortion Pil...Abortion Pills For Sale WhatsApp[[+27737758557]] In Birch Acres, Abortion Pil...
Abortion Pills For Sale WhatsApp[[+27737758557]] In Birch Acres, Abortion Pil...
 
From Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptxFrom Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptx
 
Modern binary build systems - PyCon 2024
Modern binary build systems - PyCon 2024Modern binary build systems - PyCon 2024
Modern binary build systems - PyCon 2024
 
Abortion Clinic In Johannesburg ](+27832195400*)[ 🏥 Safe Abortion Pills in Jo...
Abortion Clinic In Johannesburg ](+27832195400*)[ 🏥 Safe Abortion Pills in Jo...Abortion Clinic In Johannesburg ](+27832195400*)[ 🏥 Safe Abortion Pills in Jo...
Abortion Clinic In Johannesburg ](+27832195400*)[ 🏥 Safe Abortion Pills in Jo...
 
BusinessGPT - Security and Governance for Generative AI
BusinessGPT  - Security and Governance for Generative AIBusinessGPT  - Security and Governance for Generative AI
BusinessGPT - Security and Governance for Generative AI
 
The Strategic Impact of Buying vs Building in Test Automation
The Strategic Impact of Buying vs Building in Test AutomationThe Strategic Impact of Buying vs Building in Test Automation
The Strategic Impact of Buying vs Building in Test Automation
 
Abortion Pill Prices Mthatha (@](+27832195400*)[ 🏥 Women's Abortion Clinic In...
Abortion Pill Prices Mthatha (@](+27832195400*)[ 🏥 Women's Abortion Clinic In...Abortion Pill Prices Mthatha (@](+27832195400*)[ 🏥 Women's Abortion Clinic In...
Abortion Pill Prices Mthatha (@](+27832195400*)[ 🏥 Women's Abortion Clinic In...
 
Abortion Clinic In Springs ](+27832195400*)[ 🏥 Safe Abortion Pills in Springs...
Abortion Clinic In Springs ](+27832195400*)[ 🏥 Safe Abortion Pills in Springs...Abortion Clinic In Springs ](+27832195400*)[ 🏥 Safe Abortion Pills in Springs...
Abortion Clinic In Springs ](+27832195400*)[ 🏥 Safe Abortion Pills in Springs...
 
GraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with GraphGraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with Graph
 
Novo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNovo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMs
 
The mythical technical debt. (Brooke, please, forgive me)
The mythical technical debt. (Brooke, please, forgive me)The mythical technical debt. (Brooke, please, forgive me)
The mythical technical debt. (Brooke, please, forgive me)
 
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024
 
Community is Just as Important as Code by Andrea Goulet
Community is Just as Important as Code by Andrea GouletCommunity is Just as Important as Code by Andrea Goulet
Community is Just as Important as Code by Andrea Goulet
 
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale IbridaUNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
 

Data Manipulation

  • 2. Objectives of SQL • Create the database and relation structures; • Perform basic data management tasks, such as the insertion, modification, and deletion of data from the relations; • Perform both simple and complex queries. • A database language must perform these tasks with minimal user effort. • Its command structure and syntax must be relatively easy to learn. • The language must be portable • SQL is intended to satisfy these requirements.
  • 3. ISO SQL standard has two major components: • Data Definition Language (DDL) for defining the database structure and controlling access to the data; • Data Manipulation Language (DML) for retrieving and updating data.
  • 4. • SQL is a relatively easy language to learn: • It is a nonprocedural language; you specify what information you require, rather • than how to get it. In other words, SQL does not require you to specify the access methods to the data.
  • 5. • The command structure consists of standard English words such as CREATE TABLE, INSERT, SELECT. For example: • CREATE TABLE Staff (staffNo VARCHAR(5), IName VARCHAR(15), salary DECIMAL(7,2)); • INSERT INTO Staff VALUES (‘SG16’, ‘Brown’, 8300); • SELECT staffNo, IName, salary FROM Staff WHERE salary > 10000;
  • 6. • Most components of an SQL statement are case-insensitive • The one important exception to this rule is that literal character data must be typed exactly as it appears in the database. • “SMITH” • “Smith,” • SQL is free-format
  • 7. Data Manipulation • SELECT – to query data in the database (view information) • INSERT – to insert data into a table • UPDATE – to update data in a table • DELETE – to delete data from a table
  • 8.
  • 9. DreamHome case study • Branch (branchNo, street, city, postcode) • Staff (staffNo, fName, IName, position, sex, DOB, salary, branchNo) • PropertyForRent (propertyNo, street, city, postcode, type, rooms, rent, ownerNo, staffNo, • branchNo) • Client (clientNo, fName, IName, telNo, prefType, maxRent, eMail) • PrivateOwner (ownerNo, fName, IName, address, telNo, eMail, password) • Viewing (clientNo, propertyNo, viewDate, comment)
  • 10. Numeric and non-numeric • INSERT INTO PropertyForRent(propertyNo, street, city, postcode, type, rooms, rent, ownerNo, staffNo, branchNo) VALUES (‘PA14’, ‘16 Holhead’, ‘Aberdeen’, ‘AB7 5SU’, ‘House’, 6, 650.00, ‘CO46’, ‘SA9’, ‘B007’);
  • 11. Simple Queries • SELECT [DISTINCT | ALL] {* | [columnExpression [AS newName]] [, . . .]} • FROM TableName [alias] [, . . .] • [WHERE condition] • [GROUP BY columnList] [HAVING condition] • [ORDER BY columnList]
  • 12. Sequence of processing in a SELECT statement is: • FROM specifies the table or tables to be used • WHERE filters the rows subject to some condition • GROUP BY forms groups of rows with the same column value • HAVING filters the groups subject to some condition • SELECT specifies which columns are to appear in the output • ORDER BY specifies the order of the output
  • 13. • Order of the clauses in the SELECT statement cannot be changed • Mandatory clauses are the first two: SELECT and FROM • The remainder are optional. • The result of a query on a table is another table • There are many variations of this statement
  • 14. Retrieve all columns, all rows • SELECT staffNo, fName, IName, position, sex, DOB, salary, branchNo FROM Staff; • Order of the attributes can be changed while displaying • SELECT * FROM Staff;
  • 15. Retrieve specific columns, all rows • SELECT staffNo, fName, IName, salary FROM Staff;
  • 16. List the property numbers of all properties that have been viewed. • SELECT propertyNo FROM Viewing; propertyNo PA14 PG4 PG4 PA14 PG36
  • 17. • SELECT DISTINCT propertyNo FROM Viewing; propertyNo PA14 PG4 PG36
  • 18. Calculated fields • Produce a list of monthly salaries for all staff • SELECT staffNo, fName, IName, salary/12 FROM Staff; staffNo fName IName col4 SL21 John White 2500.00 SG37 Ann Beech 1000.00 SG14 David Ford 1500.00
  • 19. Change of Attribute name • SELECT staffNo, fName, IName, salary/12 AS monthlySalary FROM Staff; staffNo fName IName MonthlySalary SL21 John White 2500.00 SG37 Ann Beech 1000.00 SG14 David Ford 1500.00
  • 20. WHERE clause • Comparison search condition • List all staff with a salary greater than £10,000. • SELECT staffNo, fName, IName, position, salary FROM Staff WHERE salary > 10000;
  • 21. Comparison operators • = equals • <> is not equal to (ISO standard) ! = is not equal to (allowed in some dialects) • < is less than • < = is less than or equal to • > is greater than • > = is greater than or equal to
  • 22. AND, OR, and NOT • An expression is evaluated left to right; • Subexpressions in brackets are evaluated first; • NOTs are evaluated before ANDs and ORs; • ANDs are evaluated before ORs.
  • 23. Compound comparison search condition • List the addresses of all branch offices in London or Glasgow. • SELECT * FROM Branch WHERE city = ‘London’ OR city = ‘Glasgow’; * • branchNo street city postcode B005 22 Deer Rd London SW1 4EH B003 163 Main St Glasgow G11 9QX B002 56 Clover Dr London NW10 6EU
  • 24. Range search condition (BETWEEN/NOT BETWEEN) • List all staff with a salary between £20,000 and £30,000. • SELECT staffNo, fName, IName, position, salary FROM Staff WHERE salary BETWEEN 20000 AND 30000; • staffNo fName IName position salary SL21 John White Manager 30000.00 SG5 Susan Brand Manager 24000.00 • SELECT staffNo, fName, IName, position, salary FROM Staff WHERE salary > = 20000 AND salary < = 30000;
  • 25. Set membership search condition (IN/NOT IN) • List all managers and supervisors. • SELECT staffNo, fName, IName, position FROM Staff WHERE position IN (‘Manager’, ‘Supervisor’); • SELECT staffNo, fName, IName, position FROM Staff WHERE position = ‘Manager’ OR position = ‘Supervisor’;
  • 26. Pattern match search condition (LIKE/NOT LIKE) • The % percent character represents any sequence of zero or more characters (wildcard). • The _ underscore character represents any single character. • SELECT ownerNo, fName, IName, address, telNo FROM PrivateOwner WHERE address LIKE ‘%Glasgow%’; • LIKE ‘15#%’ ESCAPE ‘#’
  • 27. NULL search condition (IS NULL/IS NOT NULL) • Details of all viewings on property PG4 where a comment has not been supplied. • SELECT clientNo, viewDate FROM Viewing WHERE propertyNo = ‘PG4’ AND comment IS NULL;
  • 28. Sorting Results (ORDER BY Clause) • Produce a list of salaries for all staff, arranged in descending order of salary. • SELECT staffNo, fName, IName, salary FROM Staff ORDER BY salary DESC; (ORDER BY 4 DESC)
  • 29. Multiple column ordering • SELECT propertyNo, type, rooms, rent FROM PropertyForRent ORDER BY type, rent DESC; • propertyNo type rooms rent PG16 Flat 4 450 PL94 Flat 4 400 PG36 Flat 3 375 PG4 Flat 3 350 PA14 House 6 650 PG21 House 5 600
  • 30. How many different properties were viewed in May 2013? • SELECT COUNT(DISTINCT propertyNo) AS myCount FROM Viewing WHERE viewDate BETWEEN ‘1-May-13’ AND ‘31-May-13’;
  • 31. Find the minimum, maximum, and average staff salary. • SELECT MIN(salary) AS myMin, MAX(salary) AS myMax, AVG(salary) AS myAvg FROM Staff;
  • 32. Find the number of staff working in each branch and the sum of their salaries. • SELECT branchNo, COUNT(staffNo) AS myCount, SUM(salary) AS mySum FROM Staff GROUP BY branchNo ORDER BY branchNo;
  • 33. For each branch office with more than one member of staff, find the number of staff working in each branch and the sum of their salaries. • SELECT branchNo, COUNT(staffNo) AS myCount, SUM(salary) AS mySum FROM Staff GROUP BY branchNo HAVING COUNT(staffNo) > 1 ORDER BY branchNo;
  • 34. List the staff who work in the branch at ‘163 Main St’. • SELECT staffNo, fName, IName, position FROM Staff WHERE branchNo = (SELECT branchNo FROM Branch WHERE street = ‘163 Main St’);
  • 35. List all staff whose salary is greater than the average salary, and show by how much their salary is greater than the average. • SELECT staffNo, fName, IName, position, salary – (SELECT AVG(salary) FROM Staff) AS salDiff FROM Staff WHERE salary > (SELECT AVG(salary) FROM Staff);
  • 36. List the properties that are handled by staff who work in the branch at ‘163 Main St’. • SELECT propertyNo, street, city, postcode, type, rooms, rent FROM PropertyForRent WHERE staffNo IN (SELECT staffNo FROM Staff WHERE branchNo = (SELECT branchNo FROM Branch WHERE street = ‘163 Main St’));
  • 37. Use of ANY/SOME Find all staff whose salary is larger than the salary of at least one member of staff at branch B003. • SELECT staffNo, fName, IName, position, salary FROM Staff WHERE salary > SOME (SELECT salary FROM Staff WHERE branchNo = ‘B003’);
  • 38. Simple join List the names of all clients who have viewed a property, along with any comments supplied. • SELECT c.clientNo, fName, IName, propertyNo, comment • FROM Client c, Viewing v • WHERE c.clientNo = v.clientNo;
  • 39. Sorting a join For each branch office, list the staff numbers and names of staff who manage properties and the properties that they manage. • SELECT s.branchNo, s.staffNo, fName, IName, propertyNo • FROM Staff s, PropertyForRent p • WHERE s.staffNo = p.staffNo • ORDER BY s.branchNo, s.staffNo, propertyNo;
  • 40. Three-table join For each branch, list the staff numbers and names of staff who manage properties, including the city in which the branch is located and the properties that the staff manage. • SELECT b.branchNo, b.city, s.staffNo, fName, IName, propertyNo FROM Branch b, Staff s, PropertyForRent p WHERE b.branchNo = s.branchNo AND s.staffNo = p.staffNo ORDER BY b.branchNo, s.staffNo, propertyNo;