Answered step by step
Verified Expert Solution
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 autoincrement
firstname varchar
lastname varchar
primary key ID
;
CREATE TABLE Marks
marksid INT AUTOINCREMENT PRIMARY KEY,
studentname VARCHAR
studentid INT,
subject VARCHAR
marksobtained DECIMAL
examdate DATE
;
CREATE TABLE Fee
feeid INT AUTOINCREMENT PRIMARY KEY,
studentid INT,
firstname varchar
lastname varchar
feeamount DECIMAL
paymentstatus VARCHAR
duedate DATE
;
CREATE TABLE ConcessionScholarship
concessionid INT AUTOINCREMENT PRIMARY KEY,
studentid INT,
studentname VARCHAR ;
concessiontype VARCHAR
percentage DECIMAL
;
CREATE TABLE faculty
facultyid INT AUTOINCREMENT PRIMARY KEY,
studentid INT;
studentname VARCHAR;
facultyname VARCHAR NOT NULL,
department VARCHAR
; 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...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