SlideShare a Scribd company logo
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

More Related Content

Similar to 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 PROGRAMS
Supriya 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 1
Dan D'Urso
 
Intro to T-SQL - 1st session
Intro to T-SQL - 1st sessionIntro to T-SQL - 1st session
Intro to T-SQL - 1st session
Medhat 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 Languages
S.Shayan Daneshvar
 
SQL Queries Information
SQL Queries InformationSQL Queries Information
SQL Queries Information
Nishant Munjal
 
Access 04
Access 04Access 04
Access 04
Alexander Babich
 
1 z0 051 - oracle certification
1 z0 051 - oracle certification1 z0 051 - oracle certification
1 z0 051 - oracle certification
adam_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 assignments
smumbahelp
 
1 z0 047
1 z0 0471 z0 047
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 .docx
DIPESH30
 
Presentation.pdf
Presentation.pdfPresentation.pdf
Presentation.pdf
HosniJuarez2
 
SQL Injection Tutorial
SQL Injection TutorialSQL Injection Tutorial
SQL Injection Tutorial
Magno 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 assignments
solved_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
John Zozzaro
 
SQL Classes in Pune
SQL Classes in PuneSQL Classes in Pune
SQL Classes in Pune
Classboat.com
 

Similar to 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
 

More from 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
 

Recently uploaded

Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
Peter Spielvogel
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
Neo4j
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 

Recently uploaded (20)

Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 

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