CHAPTER9 Quiz

CHAPTER9 Quiz

10th Grade

18 Qs

quiz-placeholder

Similar activities

SQL Bronze Quiz

SQL Bronze Quiz

8th - 10th Grade

15 Qs

Database and SQL

Database and SQL

10th - 11th Grade

22 Qs

Databases

Databases

9th - 10th Grade

16 Qs

ITF Databases

ITF Databases

9th - 12th Grade

20 Qs

Testout ITF Databases

Testout ITF Databases

9th - 12th Grade

20 Qs

GCSE Databases & SQL

GCSE Databases & SQL

9th - 11th Grade

14 Qs

Databases

Databases

10th Grade - University

15 Qs

GCSE Databases

GCSE Databases

9th - 11th Grade

18 Qs

CHAPTER9 Quiz

CHAPTER9 Quiz

Assessment

Quiz

Computers

10th Grade

Easy

Created by

jasmine chen

Used 6+ times

FREE Resource

18 questions

Show all answers

1.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

If input could be:

SELECT HospitalNumber, FirstName, FamilyName

FROM PATIENT

WHERE Consultant = 'Mr Smith';

What are the following output:

Evaluate responses using AI:

OFF

Answer explanation

Media Image

2.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

If input could be:

SELECT HospitalNumber, FirstName, FamilyName

FROM PATIENT

WHERE Consultant = 'Mr Smith'

ORDER BY FamilyName;

What are the following output could be:

Evaluate responses using AI:

OFF

Answer explanation

Media Image

3.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Using the single table database PATIENT you have created:

Write an SQL query to list all Mr Jones’ patients.

Evaluate responses using AI:

OFF

Answer explanation

SELECT FirstName, FamilyName

FROM PATIENT

WHERE Consultant = 'Mr Jones'; 

4.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Using the single table database PATIENT you have created. Write an SQL query to list all the patients not in ward 6.

Evaluate responses using AI:

OFF

Answer explanation

SELECT FirstName, FamilyName

FROM PATIENT

WHERE WardNumber <> 6; 

5.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Using the single table database PATIENT you have created.

Write an SQL query to list all the patients who arrived on 12/11/2022.

Evaluate responses using AI:

OFF

Answer explanation

SELECT FirstName, FamilyName

FROM PATIENT

WHERE DateOfAdmisson = '12/11/2022’; 

6.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Using the single table database PATIENT you have created.

Write an SQL query to list all the patients who arrived between 12/10/2022 AND 30/10/2022.

Evaluate responses using AI:

OFF

Answer explanation

SELECT FirstName, FamilyName, DateOfAdmission  

FROM PATIENT

WHERE DateOfAdmission >= '12/10/2022' AND DateOfAdmission <= '30/10/2022’ ; 

7.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Using the single table database PATIENT you have created.

Write down the output from this SQL query.

SELECT FirstName, FamilyName, BedNumber

FROM PATIENT

WHEREWardNumber= 7;

Evaluate responses using AI:

OFF

Answer explanation

Media Image

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?