Answer To: Tintoretto’s are art dealers who specialize in sourcing old master paintings for collectors and are...
Ankit answered on Jun 01 2020
1.
Student(student_id#, student_name, student_address, student_phone, student_city, student_state, student_enrolment_type )
Courses (course_id#, course_title, course_prerequisite)
Instructor(instructor_id#,instructor_name, instructor_address, instructor_skills, instructor_certifications, instructor_phone)
Course_enrollment(ID#, student_id#, course_id#, instructor_id#, class_time, classroom, enrollment_capacity)
Items_list(supply_item_id#, supply_item_name, supply_item_price, supply_item_category)
Supplier(supplier_id#, supplier_name, supplier_address, supplier_city, supplier_phone, supplier_state)
Item_purchase (ID#, item_id#, supplier_id#, date_purchase)
Supply_item_course(ID#, course_id#, item_id#)
Scholor_student(ID#, student_id#, scholarship_granter, year_grant, amount)
1(c)
create table STUDENT (
STUDENT_ID# NUMBER not null primary key,
STUDENT_NAME VARCHAR2(255),
STUDENT_ADDRESS VARCHAR2(4000),
STUDENT_PHONE VARCHAR2(30),
STUDENT_CITY VARCHAR2(4000),
STUDENT_STATE VARCHAR2(4000),
STUDENT_ENROLMENT_TYPE VARCHAR2(4000)
)
;
CREATE TABLE Scholor_student
(ID# NUMBER(5),
student_id# NUMBER(5),
scholarship_granter VARCHAR2(15),
year_grant VARCHAR2(4),
amount NUMBER(4,2),
CONSTRAINT Scholor_student_ID#_pk PRIMARY KEY(ID#),
CONSTRAINT Scholor_student_student_id#_fk FOREIGN KEY (student_id#)
REFERENCES Student(student_id#));
Section B
Un-normalized data
CAR PURCHASE CONTRACT (contract number , contract date, details of purchase, total purchase amount, car delivery date, customer number, customer name, customer address, customer email, car stock number, car registration number, make, model, colour, body type, VIN number, engine number, manufacture date, manufacturer code, manufacturer name, manufacturer contact details)
First Normal form (Identify any repeating groups and the key for each such group)
There is no repeating group in this
CAR PURCHASE CONTRACT (contract number , contract date, details of purchase, total purchase amount, car delivery date, customer...