Worksheet 7 Introduction to SQL
Unit 6 Programming
Worksheet 7: Introduction to SQL
Task 1:
Two tables, tblEvent and tblPupil, are shown below.
1. Write SQL statements to:
(a) select the “Firstname”, “Surname” and “DateOfBirth” columns from tblPupil.
_________________________________________________________
__________________________________________________________________
(b) select the “EventCategory” and “EventName” columns from tblEvent for which new
school records were set.
__________________________________________________________________
__________________________________________________________________
__________________________________________________________________
(c) select all columns from tblPupil for pupils in Darwin, Faraday or Bell.
__________________________________________________________________
__________________________________________________________________
__________________________________________________________________
1
Worksheet 7 Introduction to SQL
Unit 6 Programming
(d) select all columns from tblEvent for which for which the Event category is Year 7 girls
and the event name is either 60m or 60m Hurdles.
_________________________________________________________________
_________________________________________________________________
_________________________________________________________________
_________________________________________________________________
2. List the results of executing the following SQL queries on the database.
(a) SELECT FirstName, Surname, DateOfBirth
FROM tblPupil
WHERE DateOfBirth BETWEEN 01/01/2004 AND 31/12/2004
_________________________________________________________________
_________________________________________________________________
_________________________________________________________________
(b) SELECT EventCategory, EventName
FROM tblEvent
WHERE EventCategory = ‘Long Jump’ AND NewSchoolRecord = Yes
_________________________________________________________________
_________________________________________________________________
Task 2:
3. Write an SQL statement to sort tblEvents into ascending order by EventCategory,
displaying only the fields EventCategory, EventName and WinnerID.
_________________________________________________________________
_________________________________________________________________
_________________________________________________________________