
SQL Subqueries

Flashcard
•
Computers
•
University
•
Hard
Riddhish Thakore
Used 1+ times
FREE Resource
Student preview

19 questions
Show all answers
1.
FLASHCARD QUESTION
Front
What SQL query retrieves employees working in companies located in Hyderabad?
Back
SELECT ename FROM employee e WHERE EXISTS (SELECT 1 FROM company c JOIN city ct ON c.lid = ct.lid WHERE c.cid = e.cid AND ct.lname = 'Hyderabad');
2.
FLASHCARD QUESTION
Front
How can you find companies that have at least one employee?
Back
SELECT cname FROM company c WHERE EXISTS (SELECT 1 FROM employee e WHERE e.cid = c.cid);
3.
FLASHCARD QUESTION
Front
What is the SQL query to get employees working for companies located in cities with more than one company?
Back
SELECT ename FROM employee e WHERE EXISTS (SELECT 1 FROM company c1 WHERE c1.cid = e.cid AND EXISTS (SELECT 1 FROM company c2 WHERE c1.lid = c2.lid AND c1.cid <> c2.cid));
4.
FLASHCARD QUESTION
Front
How do you find cities that have employees working in any company located there?
Back
SELECT lname FROM city ct WHERE EXISTS (SELECT 1 FROM company c JOIN employee e ON c.cid = e.cid WHERE c.lid = ct.lid);
5.
FLASHCARD QUESTION
Front
What query retrieves employees not assigned to any company?
Back
SELECT ename FROM employee e WHERE NOT EXISTS (SELECT 1 FROM company c WHERE c.cid = e.cid);
6.
FLASHCARD QUESTION
Front
How can you find companies that don’t have any employees?
Back
SELECT cname FROM company c WHERE NOT EXISTS (SELECT 1 FROM employee e WHERE e.cid = c.cid);
7.
FLASHCARD QUESTION
Front
What is the SQL query to get cities with no companies?
Back
SELECT lname FROM city ct WHERE NOT EXISTS (SELECT 1 FROM company c WHERE c.lid = ct.lid);
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Job Interview Listening Flashcard

Flashcard
•
University
16 questions
PoIS Ch 7 Review

Flashcard
•
12th Grade
10 questions
Supervisor CP Flashcard

Flashcard
•
KG - University
15 questions
Payroll technician

Flashcard
•
University
15 questions
Letter B

Flashcard
•
KG
15 questions
Compliance Acknowledgement

Flashcard
•
KG
9 questions
SWO / Green Path Closure / Part Backlog

Flashcard
•
KG - University
16 questions
Intro to Baking Flashcard

Flashcard
•
KG - University
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade