0% found this document useful (0 votes)
33 views

OFES

This document outlines the table structures and relationships for a student evaluation database, including tables for sections, subjects, faculty, students, classes, evaluations, ratings, questions, and an academic year reference table. Each table specification includes field names and data types. There are also indexes specified on various fields to optimize query performance.

Uploaded by

RamboStallone
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views

OFES

This document outlines the table structures and relationships for a student evaluation database, including tables for sections, subjects, faculty, students, classes, evaluations, ratings, questions, and an academic year reference table. Each table specification includes field names and data types. There are also indexes specified on various fields to optimize query performance.

Uploaded by

RamboStallone
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

sections

sectionId BIGINT(20)
sectionCode VARCHAR(45)

rating

faculty

subjectId INT(11)
subjCode VARCHAR(10)

facultyId BIGINT(20)

rate INT(11)

facultyId BIGINT(20)

fname VARCHAR(45)

descTitle VARCHAR(200)

academicNo INT(11)

mname VARCHAR(45)

Indexes

qualTitle VARCHAR(200)
Indexes

lname VARCHAR(45)
suffix VARCHAR(45)
dob DATE
title VARCHAR(5)
contactNo VARCHAR(35)

eval_accounts

subjects

accountNo BIGINT(20)

subjectId INT(11)

studentId BIGINT(20)

subjectCode VARCHAR(45)

password VARCHAR(25)
academicNo INT(11)
Indexes

email VARCHAR(45)

rating_records

active TINYINT(4)

rating_rec_No BIGINT(20)

Indexes

er_no BIGINT(20)

descTitle VARCHAR(225)

setCode VARCHAR(1)

lecUnits FLOAT

questionId INT(11)

labUnits FLOAT

rate INT(1)

lecHrs FLOAT

Indexes

labHrs FLOAT
credits FLOAT
Indexes

class_sections
classId BIGINT(20)
sectionId BIGINT(20)
subjectId INT(11)
studentId BIGINT(20)
academicNo INT(11)
evaluated TINYINT(1)
Indexes

students
studentId BIGINT(20)

sets

evaluation_records

setCode VARCHAR(1)

er_no BIGINT(20)

statement VARCHAR(100)

classId BIGINT(20)

Indexes

fname VARCHAR(45)

facultyId BIGINT(20)

mname VARCHAR(45)

subjectCode VARCHAR(45)

lname VARCHAR(45)

comment VARCHAR(100)

suffix VARCHAR(45)
dob DATE

academicNo INT(11)
Indexes

Indexes

questions
questionId INT(11)
question VARCHAR(225)

academic_year
academicNo INT(11)
sy VARCHAR(9)
semester VARCHAR(12)
Indexes

setCode VARCHAR(1)
Indexes

You might also like