SlideShare una empresa de Scribd logo
1 de 8
WEEK 4 Introduction to SQL:
summary

Real-life example

 Concept of SQL:
 SQL Data Types:
String types/ Numeric types/ Date-Time types
 Characteristic of DDL:
 Characteristic of DML :
 Characteristic of DCL :

quiz
WEEK 4 Introduction to SQL:
summary

Real-life example

CREATE TABLE Dvd
(
DVDId int NOT NULL,
Title varchar(100) NOT NULL,
YearPublished int NOT NULL
PRIMARY KEY (DVDId)
);

CREATE TABLE Customer
(
CustomerId int NOT NULL,
LastName varchar(25),
FirstName varchar(25),
Address varchar(50),
PhoneNo varchar(10)
PRIMARY KEY (CustomerId)
);

quiz
WEEK 4 Introduction to SQL:
summary
CREATE TABLE Director
(
DirectorId int NOT NULL,
LastName varchar(25),
FirstName varchar(25),
Address varchar(50),
PhoneNo varchar(10)
PRIMARY KEY (DirectorId )
);
CREATE TABLE Actor
(
ActorId int NOT NULL,
LastName varchar(25),
FirstName varchar(25),
Address varchar(50),
PhoneNo varchar(10)
PRIMARY KEY (ActorId )
);

Real-life example

quiz
WEEK 4 Introduction to SQL:
summary

Real-life example

CREATE TABLE Requests
(
DVDId int NOT NULL,
CustomerId int NOT NULL,
DateRequest datetime NOT NULL
);
CREATE TABLE Directed
(
DVDId int NOT NULL,
DiretorId int NOT NULL,
YearDirected int NOT NULL
);
CREATE TABLE PlaysIn
(
DVDId int NOT NULL,
ActorId int NOT NULL,
YearPlaysIn int NOT NULL
);

quiz
WEEK 4 Introduction to SQL:
summary

Real-life example

quiz

1. SQL stands for? :
A. Static Query language
B. Simplified query language
C. Standard Query Language
D. Structured Query Language
E. Simplex Query Language

2. The company that created SQzL is:
A. Microsoft
B. Oracle
C. IBM
D. Informix
E. Borland

Enter answer,,,.
WEEK 4 Introduction to SQL:
summary

Real-life example

quiz

1. SQL stands for? :
A. Static Query language
B. Simplified query language
C. Standard Query Language
D. Structured Query Language
E. Simplex Query Language

2. The company that created SQzL is:
A. Microsoft
B. Oracle
C. IBM
D. Informix
E. Borland

answer is:
1. D

2. C
WEEK 3 Relational Data Model Concepts:
summary

Real-life example

quiz

3. Which of the following is not a SQL database manipulation statement?
A. CREATE TABLE
B. UPDATE
C. DELETE
D. INSERT
4. The WHERE clause is used to extract only those records that fulfill a specified
criterion:
A. True
B. False
5. The ORDER BY keyword is used to retrieve records for specified columns:
A. True
B. False

Enter answer,,,.
WEEK 3 Relational Data Model Concepts:
summary

Real-life example

quiz

3. Which of the following is not a SQL database manipulation statement?
A. CREATE TABLE
B. UPDATE
C. DELETE
D. INSERT
4. The WHERE clause is used to extract only those records that fulfill a specified
criterion:
A. True
B. False
5. The ORDER BY keyword is used to retrieve records for specified columns:
A. True
B. False

answer is:
3. A
4. A

5. B

Más contenido relacionado

Similar a 4 summary

MDI Training DB2 Course
MDI Training DB2 CourseMDI Training DB2 Course
MDI Training DB2 CourseMarcus Davage
 
M.TECH 1ST SEM COMPUTER SCIENCE ADBMS LAB PROGRAMS
M.TECH 1ST SEM COMPUTER SCIENCE ADBMS LAB PROGRAMSM.TECH 1ST SEM COMPUTER SCIENCE ADBMS LAB PROGRAMS
M.TECH 1ST SEM COMPUTER SCIENCE ADBMS LAB PROGRAMSSupriya Radhakrishna
 
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1Dan D'Urso
 
Intro to T-SQL - 1st session
Intro to T-SQL - 1st sessionIntro to T-SQL - 1st session
Intro to T-SQL - 1st sessionMedhat Dawoud
 
Advanced SQL - Database Access from Programming Languages
Advanced SQL - Database Access  from Programming LanguagesAdvanced SQL - Database Access  from Programming Languages
Advanced SQL - Database Access from Programming LanguagesS.Shayan Daneshvar
 
SQL Queries Information
SQL Queries InformationSQL Queries Information
SQL Queries InformationNishant Munjal
 
1 z0 051 - oracle certification
1 z0 051 - oracle certification1 z0 051 - oracle certification
1 z0 051 - oracle certificationadam_jhon
 
Smu bca sem 4 (old) fall 2014 solved assignments
Smu bca sem 4 (old) fall 2014  solved assignmentsSmu bca sem 4 (old) fall 2014  solved assignments
Smu bca sem 4 (old) fall 2014 solved assignmentssmumbahelp
 
Date dimension table - part II
Date dimension table - part IIDate dimension table - part II
Date dimension table - part IIDirk Cludts
 
What is SQL Server?
What is SQL Server?What is SQL Server?
What is SQL Server?CPD INDIA
 
SQL Server 2000 Research Series - Essential Knowledge
SQL Server 2000 Research Series - Essential KnowledgeSQL Server 2000 Research Series - Essential Knowledge
SQL Server 2000 Research Series - Essential KnowledgeJerry Yang
 
L1 Intro to Relational DBMS LP.pdfIntro to Relational .docx
L1 Intro to Relational DBMS LP.pdfIntro to Relational .docxL1 Intro to Relational DBMS LP.pdfIntro to Relational .docx
L1 Intro to Relational DBMS LP.pdfIntro to Relational .docxDIPESH30
 
SQL Injection Tutorial
SQL Injection TutorialSQL Injection Tutorial
SQL Injection TutorialMagno Logan
 
SMU bca sem 4 fall 2014 assignments
SMU bca sem 4 fall 2014 assignmentsSMU bca sem 4 fall 2014 assignments
SMU bca sem 4 fall 2014 assignmentssolved_assignments
 
Jason Olson - IBM i DB2 Modernization to SQL
Jason Olson - IBM i DB2 Modernization to SQLJason Olson - IBM i DB2 Modernization to SQL
Jason Olson - IBM i DB2 Modernization to SQLJohn Zozzaro
 

Similar a 4 summary (20)

MDI Training DB2 Course
MDI Training DB2 CourseMDI Training DB2 Course
MDI Training DB2 Course
 
M.TECH 1ST SEM COMPUTER SCIENCE ADBMS LAB PROGRAMS
M.TECH 1ST SEM COMPUTER SCIENCE ADBMS LAB PROGRAMSM.TECH 1ST SEM COMPUTER SCIENCE ADBMS LAB PROGRAMS
M.TECH 1ST SEM COMPUTER SCIENCE ADBMS LAB PROGRAMS
 
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1
 
Intro to T-SQL - 1st session
Intro to T-SQL - 1st sessionIntro to T-SQL - 1st session
Intro to T-SQL - 1st session
 
Advanced SQL - Database Access from Programming Languages
Advanced SQL - Database Access  from Programming LanguagesAdvanced SQL - Database Access  from Programming Languages
Advanced SQL - Database Access from Programming Languages
 
SQL Queries Information
SQL Queries InformationSQL Queries Information
SQL Queries Information
 
Access 04
Access 04Access 04
Access 04
 
1 z0 051 - oracle certification
1 z0 051 - oracle certification1 z0 051 - oracle certification
1 z0 051 - oracle certification
 
Smu bca sem 4 (old) fall 2014 solved assignments
Smu bca sem 4 (old) fall 2014  solved assignmentsSmu bca sem 4 (old) fall 2014  solved assignments
Smu bca sem 4 (old) fall 2014 solved assignments
 
1 z0 047
1 z0 0471 z0 047
1 z0 047
 
Date dimension table - part II
Date dimension table - part IIDate dimension table - part II
Date dimension table - part II
 
What is SQL Server?
What is SQL Server?What is SQL Server?
What is SQL Server?
 
SQL Server 2000 Research Series - Essential Knowledge
SQL Server 2000 Research Series - Essential KnowledgeSQL Server 2000 Research Series - Essential Knowledge
SQL Server 2000 Research Series - Essential Knowledge
 
L1 Intro to Relational DBMS LP.pdfIntro to Relational .docx
L1 Intro to Relational DBMS LP.pdfIntro to Relational .docxL1 Intro to Relational DBMS LP.pdfIntro to Relational .docx
L1 Intro to Relational DBMS LP.pdfIntro to Relational .docx
 
70 433
70 43370 433
70 433
 
Presentation.pdf
Presentation.pdfPresentation.pdf
Presentation.pdf
 
SQL Injection Tutorial
SQL Injection TutorialSQL Injection Tutorial
SQL Injection Tutorial
 
SMU bca sem 4 fall 2014 assignments
SMU bca sem 4 fall 2014 assignmentsSMU bca sem 4 fall 2014 assignments
SMU bca sem 4 fall 2014 assignments
 
Jason Olson - IBM i DB2 Modernization to SQL
Jason Olson - IBM i DB2 Modernization to SQLJason Olson - IBM i DB2 Modernization to SQL
Jason Olson - IBM i DB2 Modernization to SQL
 
SQL Classes in Pune
SQL Classes in PuneSQL Classes in Pune
SQL Classes in Pune
 

Más de Mr Patrick NIYISHAKA (20)

Summary
SummarySummary
Summary
 
3 summary
3 summary3 summary
3 summary
 
2 ddb architecture
2 ddb architecture2 ddb architecture
2 ddb architecture
 
1 ddb
1 ddb1 ddb
1 ddb
 
2 countermeasures
2 countermeasures2 countermeasures
2 countermeasures
 
2 countermeasures
2 countermeasures2 countermeasures
2 countermeasures
 
3 summary
3 summary3 summary
3 summary
 
1 db security
1 db security1 db security
1 db security
 
4 summary
4 summary4 summary
4 summary
 
3 summary
3 summary3 summary
3 summary
 
2 con control
2 con control2 con control
2 con control
 
1 con exe
1 con exe1 con exe
1 con exe
 
1 basic concepts
1 basic concepts1 basic concepts
1 basic concepts
 
2 recovery
2 recovery2 recovery
2 recovery
 
3 transaction
3 transaction3 transaction
3 transaction
 
3 summary
3 summary3 summary
3 summary
 
1 query processing
1 query processing1 query processing
1 query processing
 
1 query processing
1 query processing1 query processing
1 query processing
 
2 optimization
2 optimization2 optimization
2 optimization
 
2 collision
2 collision2 collision
2 collision
 

Último

Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 

Último (20)

Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

4 summary

  • 1. WEEK 4 Introduction to SQL: summary Real-life example  Concept of SQL:  SQL Data Types: String types/ Numeric types/ Date-Time types  Characteristic of DDL:  Characteristic of DML :  Characteristic of DCL : quiz
  • 2. WEEK 4 Introduction to SQL: summary Real-life example CREATE TABLE Dvd ( DVDId int NOT NULL, Title varchar(100) NOT NULL, YearPublished int NOT NULL PRIMARY KEY (DVDId) ); CREATE TABLE Customer ( CustomerId int NOT NULL, LastName varchar(25), FirstName varchar(25), Address varchar(50), PhoneNo varchar(10) PRIMARY KEY (CustomerId) ); quiz
  • 3. WEEK 4 Introduction to SQL: summary CREATE TABLE Director ( DirectorId int NOT NULL, LastName varchar(25), FirstName varchar(25), Address varchar(50), PhoneNo varchar(10) PRIMARY KEY (DirectorId ) ); CREATE TABLE Actor ( ActorId int NOT NULL, LastName varchar(25), FirstName varchar(25), Address varchar(50), PhoneNo varchar(10) PRIMARY KEY (ActorId ) ); Real-life example quiz
  • 4. WEEK 4 Introduction to SQL: summary Real-life example CREATE TABLE Requests ( DVDId int NOT NULL, CustomerId int NOT NULL, DateRequest datetime NOT NULL ); CREATE TABLE Directed ( DVDId int NOT NULL, DiretorId int NOT NULL, YearDirected int NOT NULL ); CREATE TABLE PlaysIn ( DVDId int NOT NULL, ActorId int NOT NULL, YearPlaysIn int NOT NULL ); quiz
  • 5. WEEK 4 Introduction to SQL: summary Real-life example quiz 1. SQL stands for? : A. Static Query language B. Simplified query language C. Standard Query Language D. Structured Query Language E. Simplex Query Language 2. The company that created SQzL is: A. Microsoft B. Oracle C. IBM D. Informix E. Borland Enter answer,,,.
  • 6. WEEK 4 Introduction to SQL: summary Real-life example quiz 1. SQL stands for? : A. Static Query language B. Simplified query language C. Standard Query Language D. Structured Query Language E. Simplex Query Language 2. The company that created SQzL is: A. Microsoft B. Oracle C. IBM D. Informix E. Borland answer is: 1. D 2. C
  • 7. WEEK 3 Relational Data Model Concepts: summary Real-life example quiz 3. Which of the following is not a SQL database manipulation statement? A. CREATE TABLE B. UPDATE C. DELETE D. INSERT 4. The WHERE clause is used to extract only those records that fulfill a specified criterion: A. True B. False 5. The ORDER BY keyword is used to retrieve records for specified columns: A. True B. False Enter answer,,,.
  • 8. WEEK 3 Relational Data Model Concepts: summary Real-life example quiz 3. Which of the following is not a SQL database manipulation statement? A. CREATE TABLE B. UPDATE C. DELETE D. INSERT 4. The WHERE clause is used to extract only those records that fulfill a specified criterion: A. True B. False 5. The ORDER BY keyword is used to retrieve records for specified columns: A. True B. False answer is: 3. A 4. A 5. B