0% found this document useful (0 votes)
94 views2 pages

Table Name

The document describes the schema for several database tables used to store information about departments, staff, students, projects, project reviews, and student feedback. The tables include fields for identifiers, names, descriptions, dates, and foreign keys. Constraints like primary and foreign keys are specified to link the tables together.

Uploaded by

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

Table Name

The document describes the schema for several database tables used to store information about departments, staff, students, projects, project reviews, and student feedback. The tables include fields for identifiers, names, descriptions, dates, and foreign keys. Constraints like primary and foreign keys are specified to link the tables together.

Uploaded by

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

TABLE DESIGN

Table Name: Department Master

Column Name Datatype Size Description Constraints


Dept_name Varchar 50 Department Name Primary Key
Hod_name Varchar 50 HOD Name

Table Name : Staff Master Table

Column Name Datatype Size Description Constraints


Staff_code Numeric 8 Staff code Primary Key
Staff_name Varchar 50 Staff name
Gender Varchar 8 Gender
Dept_name Varchar 50 Department name
Designation Varchar 50 Designation
Work_Experience Varchar 50 Work Experience
Degree Varchar 50 Degree
Specialization Varchar 50 Specialization
Lang_known Varchar 50 Languages known

Table Name: Student Master Table

Column Name Datatype Size Description Constraints


Reg_No Numeric 8 Register No Primary Key
Stu_name Varchar 50 Student name
Batch Numeric 8 Batch
Dept_name Varchar 50 Department name
Gender Varchar 50 Gender
Age Nuemric 50 Age
Dob Datetime 50 Dob
Staff_code Numeric 50 Staff code

Table Name : Project Table

Column Name Datatype Size Description Constraints


Reg_No Numeric 8 Register Number Primary Key
Project_name Varchar 50 Project name
Project_Description Varchar 250 Project Description
Project_Type Varchar 50 Project Type
Tools_used Varchar 50 Tools used
Staff_code Numeric 8 Staff code Foreign Key
Table Name: Project Review Table

Column Name Datatype Size Description Constraints


Reg_No Numeric 8 Reg_No Primary Key
Review_Name Varchar 50 Review Name
Review_Mark Numeric 8 Review Mark
Review_feedback Varchar 50 Review feedback
Staff_code Varchar 50 Staff code

Table Name: Student Feedback Table

Column Name Datatype Size Description Constraints


Feedback_No Numeric 8 Feedback No Primary Key
Feedback_Date Datetime 50 Feedback Date
Review_Name Varchar 8 Review Name
Reg_No Numeric 50 Register No Foreign Key
Staff_code Numeric 50 Staff code Foreign Key
Feedback Varchar 100 Feedback

You might also like