SQL Silver Quiz

SQL Silver Quiz

7th - 9th Grade

9 Qs

quiz-placeholder

Similar activities

GCSE Databases & SQL

GCSE Databases & SQL

9th - 11th Grade

14 Qs

Advanced SQL

Advanced SQL

KG - University

10 Qs

Mengenal Database

Mengenal Database

9th - 12th Grade

13 Qs

ASK Ting 3 - Pangkalan Data & SQL(1)

ASK Ting 3 - Pangkalan Data & SQL(1)

9th Grade

13 Qs

SQL DML

SQL DML

6th - 8th Grade

14 Qs

Quiz z języka SQL #SQL #podstawowe_kwerendy

Quiz z języka SQL #SQL #podstawowe_kwerendy

9th Grade

8 Qs

AQA GCSE Databases and SQL

AQA GCSE Databases and SQL

9th - 12th Grade

14 Qs

Как хорошо ты знаешь IT?

Как хорошо ты знаешь IT?

1st - 12th Grade

13 Qs

SQL Silver Quiz

SQL Silver Quiz

Assessment

Quiz

Computers

7th - 9th Grade

Easy

Created by

STACS HQ

Used 6+ times

FREE Resource

9 questions

Show all answers

1.

OPEN ENDED QUESTION

2 mins • 1 pt

What would the following SQL statement do? SELECT * FROM Pupils

Evaluate responses using AI:

OFF

Answer explanation

It would display all records from the Pupils table.

2.

OPEN ENDED QUESTION

2 mins • 1 pt

What would the following SQL statement do? SELECT Age FROM Pupils

Evaluate responses using AI:

OFF

Answer explanation

It would display the age of all records in the Pupils table.

3.

OPEN ENDED QUESTION

2 mins • 1 pt

What would the following SQL statement do? SELECT forename, surname, age FROM Pupils

Evaluate responses using AI:

OFF

Answer explanation

It would display the forename, surname and age of all the records in the Pupils table.

4.

OPEN ENDED QUESTION

3 mins • 1 pt

What would the following SQL statement do? SELECT * FROM Pupils WHERE gender = "Female"

Evaluate responses using AI:

OFF

Answer explanation

It would display all the records from the Pupils table who are female.

5.

OPEN ENDED QUESTION

3 mins • 1 pt

What would the following SQL statement do? SELECT forename, surname FROM Pupils WHERE age <= 12

Evaluate responses using AI:

OFF

Answer explanation

It would display the forename and surname from all the records in the Pupils table who are age 12 or younger.

6.

OPEN ENDED QUESTION

3 mins • 1 pt

What would the following SQL statement do? SELECT forename, surname FROM Pupils WHERE age = 12 AND gender = "Male"

Evaluate responses using AI:

OFF

Answer explanation

It would display the forename and surname from all the records in the Pupils table who are 12 years old and male.

7.

OPEN ENDED QUESTION

3 mins • 1 pt

What would the following SQL statement do? SELECT * FROM Pupils WHERE age = 12 OR gender = "Female"

Evaluate responses using AI:

OFF

Answer explanation

It would display all the records from the Pupils table who are 12 years old and display all the records that are females.

8.

OPEN ENDED QUESTION

3 mins • 1 pt

What would the following SQL statement do? SELECT * FROM Pupils ORDER BY age

Evaluate responses using AI:

OFF

Answer explanation

It would display all the records from the Pupils table but would have them in ascending order by age (youngest to oldest).

9.

OPEN ENDED QUESTION

3 mins • 1 pt

What would the following SQL statement do? SELECT forename, surname FROM Pupils ORDER BY age DESC

Evaluate responses using AI:

OFF

Answer explanation

It would display the forename and surnames from all the records in the Pupils table but it would have them in descending order by age (oldest to youngest).