SlideShare uma empresa 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

Mais conteúdo relacionado

Semelhante 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
 

Semelhante 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
 

Mais 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

08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
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
 
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
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
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
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 

Último (20)

08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
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 ...
 
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
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
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
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 

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