Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Create a procedure that builds a denormalized table with the following fields: S

ID: 655235 • Letter: C

Question

Create a procedure that builds a denormalized table with the following fields:

Student Last Name          STUDENT - LAST_NAME

Student First Name         STUDENT - FIRST_NAME

Course Number                SECTION - COURSE_NO

Section Number              SECTION - SECTION_NO

Instructor Last Name      INSTRUCTOR - LAST_NAME

Instructor First Name    INSTRUCTOR - FIRST_NAME

Any additional fields required to implement the surrogate keys specified below

This table should also include surrogate keys to allow rapid sorting by:

Student Last Name, First Name

Course Number, Section Number

Instructor Last Name, First Name

Submit the .SQL file containing the procedure

Explanation / Answer

create or replace procedure cre
begin
   create table student(Last_name varchar(20), First_name varchar(20));

   create table section(Course_no numeric, section_no numeric);

   create table instructor(Last_name varchar(20), First_name varchar(20));

end;

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote