Question
Write SQL queries with the following information: The schema of an enrollment database for college students contains the following: STUDENT(ssn, lname, fname, dob) Primary key:
Write SQL queries with the following information:
The schema of an enrollment database for college students contains the following:
STUDENT(ssn, lname, fname, dob)
Primary key: {ssn}
COURSE(cid, year, semester, department, cnum)
Primary key: {cid, year, semester}
Enrolled(ssn, year, sem, date_enrolled)
Primary key: {ssn, cid, year, sem}
Foreign key 1: {ssn} refernces primary key of STUDENT
Foreign key 2: {cid, year, sem} refernces primary key of COURSE
Write the following queries:
1) Find full names of all students enrolled in CIS3400 (CIS is the department name, 3400 is the cnum)
2) Find full names of all students who are enrolled in more than one course this semester (Summer 2017, summer is the semester, 2017 is the year)
3) Interpret the following SQL statement and write concise sentence in English to describe the output of the stated query.
select lname, fname
from student
where dob in (
select top 1 dob
from (
select dob, count(dob) as someNum
from student
group by dob
order by count(dob) desc));
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started