Skip to content

pavlosdais/Travel-Agency-Database

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Travel Agency Database

This is a database system designed to manage the travel-related information for a travel agency called Pausanias, created for the purposes of the Design and Use of Database Systems course. This database system allows the company to store, update, and retrieve information, enabling the delivery of services to their customers. Each table represents a specific entity within the travel agency ecosystem, with well-defined relationships and attributes that capture relevant details. The assignments can be viewed over at the assignments folder (note they're in greek).

In the first assignment, we focused on implementing the database schema for the travel agency. Using MySQL Workbench, we created a diagram that represents the structure of the database providing a visual representation of it. The schema includes several tables, such as employees, traveler, tour, package, and offer. Each table has its own set of attributes that capture relevant information for the travel agency's needs. Implementing the schema involved defining the relationships between the tables, establishing primary and foreign key constraints, and ensuring the data model accurately represents the requirements of the company as provided by the assignment.

Click here to view the schema
Our schema

Score: 95/100

In this assignment, we were given an already implemented database of the travel agency using a given schema.

Part A: Queries

The task was to write mySQL queries to extract valuable information from the database. These queries allow the retrieval of data related to employees, travelers, destinations, trip packages, reservations, and more. View the queries we wrote here.

Part B: Python Interface

In the second assignment's Part B, we built a Python interface to interact with the travel agency database. The interface provides a user-friendly way to run queries and retrieve information without directly working with SQL. Using given a database connector library, we developed a set of functions that encapsulate the queries. This allows users to interactively perform database operations.

Score: Unknown

Authors