Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

make UML and relational Schema of those tables ? create table students ( ID int auto _ increment , first _ name varchar

make UML and relational Schema of those tables ?
create table students ( 
 
ID int auto_increment ,
first_name varchar(50),
last_name varchar(50),
primary key (ID)
) ;

CREATE TABLE Marks (
marks_id INT AUTO_INCREMENT PRIMARY KEY,
student_name VARCHAR(50)
student_id INT,
subject VARCHAR(50),
marks_obtained DECIMAL(5,2),
exam_date DATE
);
CREATE TABLE Fee (
fee_id INT AUTO_INCREMENT PRIMARY KEY,
student_id INT,
first_name varchar (50),
last_name varchar 50),
fee_amount DECIMAL(10,2),
payment_status VARCHAR(20),
due_date DATE
);
CREATE TABLE ConcessionScholarship (
concession_id INT AUTO_INCREMENT PRIMARY KEY,
student_id INT,
student_name VARCHAR(50) ;
concession_type VARCHAR(50),
percentage DECIMAL(5,2)
);
CREATE TABLE faculty (
faculty_id INT AUTO_INCREMENT PRIMARY KEY,
student_id INT;
student_name VARCHAR(50);
faculty_name VARCHAR(100) NOT NULL,
department VARCHAR(50)

); Could some please make UML and relational Schema of those tables ?

Step by Step Solution

3.39 Rating (155 Votes )

There are 3 Steps involved in it

Step: 1

To create the UML and relational schema for the provided tables we can represent each table as an en... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Modeling and Database Design

Authors: Narayan S. Umanath, Richard W. Scammel

2nd edition

1285085256, 978-1285085258

More Books

Students also viewed these Programming questions

Question

Explain functional dependency between two attributes.

Answered: 1 week ago