Question
rider major major_id Int (11) major_name varchar (25) major_description varchar (75) graduate_only char(1) rider student student_id Int (11) first_name varchar (25) last_name varchar (25) major_id
rider major
major_id Int (11) major_name varchar (25) major_description varchar (75) graduate_only char(1)
rider student
student_id Int (11) first_name varchar (25) last_name varchar (25) major_id Int (11) club_id Int (11)
1. Write a SQL statement to add a student record to the rider_student table for you. This should be a student with your name. Add data to all table columns. Examine the records in the rider_major table and use a major currently in the table. 2. Write a SQL statement to add a major record for a major not currently listed in the rider_major table. Add data to all table columns. Be creative and assume you can create a major for anything of interest to you. You must choose a major that does not currently exist to the table. 3. Assume you want to change your major to the major you added in the previous question. Write a SQL statement to change the major. 4. Write a SQL statement to retrieve the student first_name, last_name, major_name, and major_description for all records in the rider_student table. This will require an appropriate join between the rider_student and rider_major tables. 5. Write a SQL statement to retrieve the student first_name, last_name, major_name, and major_description for the rider_student record you added for yourself. This will require an appropriate join between the rider_student and rider_major tables. 6. Add an additional record to the rider_student table (see question 1 above). Use any name. Then write a delete statement to delete that record. Note: you are deleting only one record and you need to write your delete statement correctly to do that.
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