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

Table Design Table Name: Student Registration

The document describes the design of 5 database tables - Student Registration, Tutor Registration, File Upload, Video Upload, and Chatbox. The Student Registration and Tutor Registration tables contain columns for basic user information like name, gender, date of birth, contact details, username, and password. The File Upload and Video Upload tables store uploaded ebooks, videos and their metadata, linking them to tutors using a foreign key. The Chatbox table logs chat messages with information like date, time, user reference number, message content and department.

Uploaded by

anand_gsoft3603
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)
520 views2 pages

Table Design Table Name: Student Registration

The document describes the design of 5 database tables - Student Registration, Tutor Registration, File Upload, Video Upload, and Chatbox. The Student Registration and Tutor Registration tables contain columns for basic user information like name, gender, date of birth, contact details, username, and password. The File Upload and Video Upload tables store uploaded ebooks, videos and their metadata, linking them to tutors using a foreign key. The Chatbox table logs chat messages with information like date, time, user reference number, message content and department.

Uploaded by

anand_gsoft3603
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 : STUDENT REGISTRATION


Column Name
StudentRef_No
Student_Name
Gender
Date_of_birth
Address_Communication
Mobile_Number
Email_id
Username
Password
Department

Constraints
Primary Key

Datatype
numeric(18, 0)
varchar(50)
varchar(50)
datetime
varchar(50)
numeric(18, 0)
varchar(50)
varchar(50)
varchar(50)
varchar(50)

TABLE NAME : TUTOR REGISTRATION


Column Name
TutorRef_No
Tutor_Name
Gender
Date_of_birth
Address_Communication
Mobile_Number
Email_id
Username
Password
Department

Constraints
Primary Key

Datatype
numeric(18, 0)
varchar(50)
varchar(50)
datetime
varchar(50)
numeric(18, 0)
varchar(50)
varchar(50)
varchar(50)
varchar(50)

TABLE NAME : FILE UPLOAD TABLE


Column Name
FileUpload_Refno
Reference_Date
TutorRef_No
Ebook_heading
Ebook_description
Ebook_Filename
Ebook_file
ebook_filetype
department

Datatype
numeric(18, 0)
datetime
numeric(18, 0)
varchar(50)
varchar(250)
varchar(50)
varbinary(MAX)
varchar(50)
varchar(50)

Constraints
Primary Key
Foreign Key

TABLE NAME : VIDEO UPLOAD TABLE

Column Name
VideoUpload_Refno
Reference_Date
TutorRef_No
video_heading
video_description
videoname
videofile
videotype
department

Constraints
Primary Key

Datatype
numeric(18, 0)
datetime
numeric(18, 0)
varchar(50)
varchar(250)
varchar(50)
varbinary(MAX)
varchar(50)
varchar(50)

Foreign Key

TABLE NAME : CHATBOX


Column Name
chatno
chat_date
chat_time
Ref_no
msg_posted
department
role

Datatype
numeric(18, 0)
datetime
datetime
nchar(10)
varchar(250)
varchar(50)
varchar(50)

Constraints
Primary key
Foreign Key

You might also like