Sie sind auf Seite 1von 13

2/24/2019 A Language School Database Model

Go to articles list RSS

A Language School Subscribe to our newsletter

Database Model
Shares
If you nd this article useful,
join our weekly newsletter to be
noti ed about the latest posts.

Your email address:


by
Dorota Wdzięczna
Data Science Writer at Vertabelo
Posted: July 19, 2017 Subscribe

complete data model web platform Share

You may also like:

Summer Is Here: A Travel


Agency Data Model

The Book of All Knowledge: An


Online Encyclopedia Data
Model

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 1/13
2/24/2019
Knowing a foreign language is an important skill, especiallyAin
Language School Database Model
a global economy. In this article,
we look at a data model that can help run a language school.

Learning a language can be challenging, but enrolling in a language school should be easy. You can enroll at
the school itself, or you can use an online form. In this article, we’ll examine a data model that allows for
Shares
online registration as well as other functions common to language schools. Six Things You Need to Know
About Securing Your Database

Language School Requirements


First of all, the application must allow users to register and to log into the system. A user may be a student,
a teacher, or a school staff member. Do you know?

People can enroll in a course online or in person at the school. The school staff should be able to enter Five reasons why we built
student information, con rm their course reservation, and assign students to a speci c class. Students can Vertabelo
pay for their courses online or at the school.
Vertabelo API
Additionally, staff should be able to create new classes and assign students to them. The model should be
jOOQ – A really nice alternative
able to store details about students, teachers, languages, levels, and courses. There should also be a way to
to Hibernate
check if payments have been made.

The Data Model

New SQL Course!

SQL Basics in MS SQL


Server
Learn the basics of T-SQL for
SQL Server, retrieve data from
an SQL Server database and
build simple reports.

VIEW COURSE

Discover our other courses:

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 2/13
2/24/2019 A Language School Database Model
Introduction to Python for
class_student
id
class
int PK
class_id
class_weekday
int PK FK
Data Science
id int PK name varchar(100)
class_id int FK weekday_id int PK FK
start_date date

Python Basics. Part 1


student_id int FK hours varchar(50)
end_date date
price money
teacher_id int FK
course_id int FK
weekday
id int PK
name varchar(100)

Classes

Shares teacher teacher_account


 
id int PK

 
id int PK level
description varchar(300) teacher_id int FK id int PK
photo image N is_active bit course sign char(2)
first_name varchar(50) login varchar(100)
id int PK name varchar(100)
last_name varchar(50) password varchar(100)
email varchar(50) lessons int
phone varchar(15) description varchar(300)
term varchar(100)
language
language_id int FK
level_id int FK id int PK
Teachers category_id int FK name varchar(100)

EDIT MODEL IN YOUR BROWSER


student

The diagram above shows the data model I’ve designed for a language school. It consists of six subject
areas:

Courses

Students

Teachers

Staff

Classes

Payments

I will describe each of these areas individually.

Courses
This area stores information about languages, levels, age categories (to ensure the course is age-
appropriate) and course details. There are four tables: language , level , category , and
course .

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 3/13
2/24/2019 A Language School Database Model

Shares

The language table stores the names of languages we teach, such as English, German, French, Spanish,
etc. It contains these elds:

id – The primary key of the table.

name – The language name, e.g. “English”, “German”, etc.

Both of these columns are mandatory.

The level table stores information about the pro ciency level associated with a course. This can be
expressed in a name (“novice”) or a symbol (“A1”, “C2”, etc.) This code is different in different parts of the
world, but we will limit it to two characters. This table contains:

id – The primary key of the table.

name – A name representing the level of pro ciency, e.g. Novice, High, Expert, Conversational, etc.

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 4/13
2/24/2019 code – A two-character symbol for the course’s language A Language
level, School
like A1, C2,Database Model
NL, D, 2+, etc. Note
that this is a CHAR(2) datatype.

All of these columns are mandatory.

Language students are often of different ages, which means the lesson content will be different. The
Shares category table is important, as it enables us to categorize courses by age group. It contains the
following elds:

id – The primary key of the table.

name – A category name like “children”, “youth”, “adult”, etc. Courses in each category will have
specially prepared material for that age group.

Both columns are mandatory.

Last in this area is the very important course table. It contains all course details and has these columns:

id – The primary key of the table.

language_id – References the language table.

level_id – References the level table.

category_id – References the category table.

lessons – Denotes the number of lessons in the course.

description – A short description of the course.

term – How long the course lasts.

All columns in this table are mandatory.

Students
This subject area stores students’ details like address, date of birth, name, email, and phone number. It also
stores their application account information. All data is held in two tables, student and
student_account .

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 5/13
2/24/2019 A Language School Database Model

Shares

The student table stores each student’s name, contact information, date of birth, email, and phone
number. The date of birth is important because courses are personalized by age groups.

The elds in this table are:

id – The primary key of the table.

date_birth – The student’s date of birth.

state – The state where the student lives.

city – The city where the student lives.

zip_code – The ZIP code of the student’s mailing address.

street – The street and number of the student’s mailing address.

first_name – Self-explanatory.

last_name – Self-explanatory.

email – Self-explanatory.

phone_number – Self-explanatory.

All columns in this table are mandatory.

The second and last table in this subject area is student_account . Its columns are:

id – The primary key of the table.

student_id – References the student table.


https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 6/13
2/24/2019 login – The student’s user login. A Language School Database Model

password – The student’s password.

is_active – Denotes if an account is active using a bit value: “0” for inactive, “1” for active. This
allows the admin to block or unblock accounts.

Shares
All columns in this table are mandatory.

Why separate the data in student_account from what’s in student ? Some people will enroll in the
of ce, without using the web application. They won’t have a web app account, so it makes sense to keep
these two sets of information separate.

Teachers
This subject area stores teachers’ names, optional contact data, their quali cations or credentials, and
optional teacher photos. It contains two tables: teacher and teacher_account . Notice that a
teacher can have an online account with the web app, but it is not required.

The teacher table has the following columns:

id – The primary key of the table.

description – Describes the teacher’s quali cations.

photo – An optional photo of the teacher.

first_name – Self-explanatory.

last_name – Self-explanatory.
https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 7/13
2/24/2019 email – Self-explanatory. A Language School Database Model

phone – Self-explanatory.

All columns in this table except photo are mandatory.

The second table in this area is the teacher_account table. These are its columns:
Shares

id – The primary key of the table.

teacher_id – References the teacher table.

login – Stores a user login for the teacher.

password – Stores the password for the teacher’s account.

is_active – Denotes if an account is active using a bit value: “0” for inactive, “1” for active. This
allows the admin to block or unblock accounts.

All columns in this table are mandatory.

The reason for having separate teacher and teacher_account tables is the same as for the
students: some people will not have an app account.

Staff
This subject area contains information about language school employees, such as managers and
secretaries. There are two tables, staff and staff_account .

The staff table has the following columns:

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 8/13
2/24/2019 id – The primary key of the table. A Language School Database Model

position – The job title.

first_name – Self-explanatory.

last_name – Self-explanatory.

Shares email – Self-explanatory.

phone – Self-explanatory.

All columns in this table are mandatory.

The second and last table in this area is the staff_account table. These are its columns:

id – The primary key of the table.

staff_id – References the staff table.

login – Stores the employee’s user login.

password – Stores the employee’s password.

is_active – Denotes if an account is active using a bit value: “0” for inactive, “1” for active. This
allows the admin to block or unblock accounts.

All elds are mandatory.

Classes
This subject area contains data about course classes. A course can be made up of one or many classes.
Each class is made up of a number of lessons (or sessions) that take place on certain days. We also need a
reference table between the weekday and class tables called class_weekday . We’ll also have a
table called class_student that lets us associate classes and the students enrolled in them.

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 9/13
2/24/2019 A Language School Database Model

Shares

The weekday table stores the weekdays our school is open. The columns in this table are:

id – The primary key of the table.

name – The name of a weekday (“Monday”, “Tuesday”, etc).

All columns in this table are required.

The class_weekday table contains the following columns. Notice that the rst two are foreign keys,
relating this table to other tables in the subject area:

class_id – References the class table.

weekday_id – References the weekday table.

hours – Indicates the time when each class is held, e.g. ‘9.30 – 10.30’.

All columns in this table are required.

This table relates to data in the class and weekday tables. It is needed because we will have more
than one class during each weekday, and each class might be held on more than one weekday.

The class table is essential to this subject area. It stores the following columns:

id – The primary key of the table.

name – The name of a course class. Note that this is one instance of a course, such as
“Intermediate German Spring 2018”.

start_date – The date of the rst lesson of this class.

end_date – The date of the last lesson of this class.


https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 10/13
2/24/2019 price – The price for this class. A Language School Database Model

teacher_id – References the teacher table and associates a teacher with this speci c class.

course_id – References the course table. Remember that one course can be implemented as
several different classes.

Shares
All columns in this table are mandatory.

Finally, we come to the class_student table. We can expect that the same student will enroll in more
than one class. And one class most likely will have several students. This table is needed for these
relationships. These are its columns:

id – The primary key of the table.

student_id – References the student table.

class_id – References the class table.

All columns in this table are required.

Payment
Our last subject area records payment information related to students and classes. It stores details about
the total amount per course, the payment method used, and the status of a payment. We use two tables to
do this, payment_method and payment .

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 11/13
2/24/2019 The payment_method table has only two columns: A Language School Database Model

id – The primary key of the table.

name – The payment method name (i.e. “cash”, “credit card”, “debit card”, etc). If a student doesn’t
have an online account, they may pay in cash.

Shares
Both columns are required.

The payment table has the following columns:

id – The primary key of the table.

payment_date – The date payment was received.

amount – The amount paid for the class.

payment_method_id – The payment method used.

status – The status of the payment (like “pending”, etc).

student_id – References the student table and relates a student with a payment.

class_id – References the class table and relates a payment with a speci c class.

All columns are required.

What Would You Add to This Data Model?


This data model was designed to let language schools run a web application. This app would let students,
teachers, and staff enter data into the school’s database. Plus, it would allow students to enroll in various
classes and courses online.

Of course, there are areas where this model can be extended. What would you add? What would you
change? Tell us in the comments section below.

Follow @vertabelo

Like 0 Tweet

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 12/13
2/24/2019 A Language School Database Model

Shares

https://www.vertabelo.com/blog/technical-articles/a-language-school-database-model 13/13

Das könnte Ihnen auch gefallen