Question
Table Name: person Field Type Notes person_id int(8) ? Primary key ? Auto-increment value ? Required first_name varchar(25) ? Required last_name varchar(25) ? Required Table
Table Name: person Field Type Notes person_id int(8) ? Primary key ? Auto-increment value ? Required first_name varchar(25) ? Required last_name varchar(25) ? Required
Table Name: building Field Type Notes building_id int(8) ? Primary key ? Auto-increment value ? Required building_name varchar(50) ? Required
Table Name: room Field Type Notes room_id int(8) ? Primary key ? Auto-increment value ? Required room_number varchar(10) ? Required building_id int(8) ? Required capacity int(8) ? Required
Table Name: meeting Field Type Notes meeting_id int(8) ? Primary key ? Auto-increment value ? Required room_id int(8) ? Required meeting_start datetime ? Required meeting_end datetime ? Required
Table Name: person_meeting Field Type Notes person_id int(8) ? Primary key ? Required meeting_id int(8) ? Primary key ? Required
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Task One: Find all the meetings that Tom Hanks has to attend Construct the SQL statement to find all the meetings that Tom Hanks has to attend. Display the following columns:
? Persons first name ? Persons last name ? Building name ? Room number ? Meeting start date and time ? Meeting end date and time
Task Two: Find all the people that are attending meeting ID 2 Construct the SQL statement to find all the people that are attending meeting ID 2. Display the following columns:
? Persons first name ? Persons last name
? Building name ? Room number ? Meeting start date and time ? Meeting end date and time
Task Three: Find all the people who have meetings in the Main Street building Construct the SQL statement to find all the people who have meetings in the Main Street building. Display the following columns:
? Persons first name ? Persons last name ? Building name ? Room number ? Meeting ID ? Meeting start date and time ? Meeting end date and time
Task Four: Find the number of attendees for every meeting Construct the SQL statement to find the number of attendees for every meeting. Display the following columns:
? Count of meeting attendees ? Meeting ID ? Meeting start date and time ? Meeting end date and time
Task Five: Find All of the People that Have Meetings Only Before Dec. 25, 2016 at Noon Using INNER JOINs Construct the SQL statement to find all of the people that have meetings only before Dec. 25, 2016 at noon using INNER JOINs. Display the following columns:
? Persons first name ? Persons last name ? Meeting ID ? Meeting start date and time ? Meeting end date and time
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