CHAPTER9 Quiz

CHAPTER9 Quiz

10th Grade

18 Qs

quiz-placeholder

Similar activities

Podstawy baz danych

Podstawy baz danych

3rd - 12th Grade

15 Qs

Database

Database

9th - 11th Grade

18 Qs

Access Tables Forms and Queries

Access Tables Forms and Queries

10th - 12th Grade

20 Qs

SQL in Databases

SQL in Databases

10th Grade

15 Qs

QUIZ 3 - MySQL (Database, table, select, update)

QUIZ 3 - MySQL (Database, table, select, update)

9th - 12th Grade

15 Qs

Databases and SQL for Grade 10 IT

Databases and SQL for Grade 10 IT

10th - 12th Grade

16 Qs

Quiz Basis Data (Query)

Quiz Basis Data (Query)

9th - 12th Grade

20 Qs

8525 AQA  GCSE Computer Science 3.7.1 Relational databases

8525 AQA GCSE Computer Science 3.7.1 Relational databases

7th - 12th Grade

16 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?