
SQL Subqueries and Joins Quiz

Quiz
•
Information Technology (IT)
•
University
•
Medium
ARLENE QUICAY
Used 6+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
Which of the following queries best finds students who are taking the same course as 'Alice' using a subquery?
SELECT StudentName FROM Students WHERE CourseID IN (SELECT CourseID FROM Students WHERE StudentName = 'Alice');
SELECT StudentName FROM Students s JOIN Courses c ON s.CourseID = c.CourseID WHERE c.CourseName = 'Alice';
SELECT StudentName FROM Students WHERE StudentName = 'Alice';
SELECT StudentName FROM Students WHERE CourseID = ALL (SELECT CourseID FROM Courses WHERE CourseName = 'Alice');
2.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
You are tasked to find instructors not assigned to any course. Which type of SQL approach is most appropriate?
Inner Join
LEFT JOIN with WHERE CourseID IS NOT NULL
Subquery using NOT IN
Correlated Subquery inside JOIN
3.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
Why might a subquery be preferred over a join in Task 1 (finding students enrolled in 'Database Systems')?
It simplifies the query by hiding the relationship in a nested form
It uses fewer keywords, making the SQL script shorter to write and read
Because it clearly separates the filtering condition from the main query
Because JOINs do not work with multiple tables
4.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
Which query correctly lists students taking courses with no assigned instructor using a JOIN?
SELECT StudentName FROM Students JOIN Courses ON Students.CourseID = Courses.CourseID WHERE Courses.InstructorID IS NULL;
SELECT StudentName FROM Students JOIN Instructors ON Students.CourseID = Instructors.InstructorID;
SELECT StudentName FROM Students WHERE InstructorID IS NULL;
SELECT StudentName FROM Students JOIN Courses ON Courses.InstructorID IS NOT NULL;
5.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
Which JOIN ensures that all students are listed even if their course has no instructor assigned?
INNER JOIN between Students and Instructors
LEFT JOIN between Students → Courses → Instructors
RIGHT JOIN between Instructors and Courses
CROSS JOIN between Students and Courses
6.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
Which of the following best explains when to prefer an INNER JOIN over a subquery?
When filtering using a single-column comparison
When you need to filter rows that have no related values
When combining data from multiple tables for result display
When avoiding Cartesian products
7.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
Which query correctly returns instructors who are not assigned to any course using a LEFT OUTER JOIN?
SELECT i.InstructorName FROM Instructors i LEFT JOIN Courses c ON i.InstructorID = c.InstructorID WHERE c.CourseID IS NULL;
SELECT i.InstructorName FROM Instructors i LEFT JOIN Courses c ON i.InstructorID = c.InstructorID WHERE i.InstructorID IS NULL;
SELECT i.InstructorName FROM Instructors i LEFT JOIN Courses c ON c.InstructorID = i.InstructorID WHERE c.InstructorID IS NOT NULL;
SELECT i.InstructorName FROM Instructors i JOIN Courses c ON i.InstructorID = c.InstructorID WHERE c.CourseID IS NULL;
Create a free account and access millions of resources
Similar Resources on Wayground
20 questions
Revissão - Linguagem C (str, fun, stru, vt+mt,)

Quiz
•
University
15 questions
Desarrollo Web Integral Examen 3 Parcial - Remedial

Quiz
•
University
15 questions
Chapter 3 : SQL Command

Quiz
•
University
10 questions
AverageRound

Quiz
•
University
10 questions
[SE] 6. Software Modeling

Quiz
•
University
20 questions
Understanding Database Technologies, Relational Model, and Data

Quiz
•
University
15 questions
Quiz Pertemuan 12

Quiz
•
University
15 questions
Week 1 Intro to DBMS Quiz 1

Quiz
•
University
Popular Resources on Wayground
12 questions
Unit Zero lesson 2 cafeteria

Lesson
•
9th - 12th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
20 questions
Lab Safety and Equipment

Quiz
•
8th Grade
13 questions
25-26 Behavior Expectations Matrix

Quiz
•
9th - 12th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Information Technology (IT)
15 questions
Let's Take a Poll...

Quiz
•
9th Grade - University
2 questions
Pronouncing Names Correctly

Quiz
•
University
12 questions
Civil War

Quiz
•
8th Grade - University
18 questions
Parent Functions

Quiz
•
9th Grade - University
21 questions
Mapa países hispanohablantes

Quiz
•
1st Grade - University
19 questions
Primary v. Secondary Sources

Quiz
•
6th Grade - University
25 questions
Identifying Parts of Speech

Quiz
•
8th Grade - University
20 questions
Disney Trivia

Quiz
•
University