SQL Data Analyst Quiz

SQL Data Analyst Quiz

12th Grade

10 Qs

quiz-placeholder

Similar activities

SQL

SQL

10th - 12th Grade

9 Qs

Amongus

Amongus

KG - Professional Development

7 Qs

Kenali Frog VLE

Kenali Frog VLE

KG - University

10 Qs

Interogari

Interogari

12th Grade

10 Qs

SRB Berbagi

SRB Berbagi

12th Grade

10 Qs

ROBLOX

ROBLOX

KG - Professional Development

14 Qs

Regular Verbs - ED Pronunciation

Regular Verbs - ED Pronunciation

9th - 12th Grade

10 Qs

YouCode Scratch Quiz

YouCode Scratch Quiz

KG - 12th Grade

10 Qs

SQL Data Analyst Quiz

SQL Data Analyst Quiz

Assessment

Quiz

Other

12th Grade

Hard

DOK Level 2: Skill/Concept, DOK Level 3: Strategic Thinking, DOK Level 1: Recall

+1

Standards-aligned

Created by

Pranav Goyal

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What SQL clause is used to filter the results of a query when querying the Quizizz database for specific games?

GROUP BY

ORDER BY

WHERE

HAVING

Tags

DOK Level 1: Recall

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which SQL function is used to count the number of rows in a database table, such as the 'Game' table in Quizizz?

COUNT()

SUM()

AVG()

MAX()

Tags

DOK Level 1: Recall

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you select all the columns from a table named "Game" where the "Status" is "Active"?

SELECT * FROM Game WHERE Status='Active';

SELECT * FROM Game HAVING Status='Active';

SELECT Status FROM Game WHERE Status='Active';

SELECT Status='Active' FROM Game;

Tags

DOK Level 2: Skill/Concept

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want to sort the results of your game by the "Score" column in descending order, which SQL clause should you use?

ORDER BY Score asc;

ORDER BY Score desc;

GROUP BY Score desc;

SORT BY Score desc;

Tags

DOK Level 2: Skill/Concept

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you join two tables, "Quiz" and "Game", to match each quiz with the game's information, assuming the common column is "QuizID"?

SELECT * FROM Quiz JOIN Game ON Quiz.QuizID = Game.QuizID;

SELECT * FROM Quiz, Game WHERE Quiz.QuizID = Game.QuizID;

SELECT * FROM Quiz UNION Game;

SELECT * FROM Quiz CROSS JOIN Game ON Quiz.QuizID = Game.QuizID;

Tags

DOK Level 2: Skill/Concept

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write a SQL query to find the total number of games played per quiz from the "Game" table, which includes columns "GameID", "QuizID", and "PlayedDate". You need to group the results by "QuizID".

SELECT QuizID, COUNT(GameID) FROM Game GROUP BY QuizID;

SELECT PlayedDate, COUNT(GameID) FROM Game ORDER BY PlayedDate;

SELECT COUNT(GameID), QuizID FROM Game GROUP BY PlayedDate;

SELECT QuizID, SUM(GameID) FROM Game GROUP BY QuizID;

Tags

DOK Level 3: Strategic Thinking

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you modify a table named "Quiz" to add a column "HostEmail" with the data type VARCHAR(255)?

ALTER TABLE Quiz ADD COLUMN HostEmail VARCHAR(255);

UPDATE TABLE Quiz ADD HostEmail VARCHAR(255);

INSERT INTO Quiz (HostEmail) VALUES (VARCHAR(255));

MODIFY TABLE Quiz ADD HostEmail VARCHAR(255);

Tags

DOK Level 2: Skill/Concept

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?