An open API service indexing awesome lists of open source software.

https://github.com/ghonim0007/fcc-worldcup-database

This project is part of the freeCodeCamp Relational Database Certification. It involves creating a PostgreSQL database to store and analyze data from the final three rounds of the FIFA World Cup tournaments since 2014. The database includes tables for teams, matches, and scores. Resources Readme: Contains project details and instructions.
https://github.com/ghonim0007/fcc-worldcup-database

bash database fcc postgresql shell-script wordcup

Last synced: about 2 months ago
JSON representation

This project is part of the freeCodeCamp Relational Database Certification. It involves creating a PostgreSQL database to store and analyze data from the final three rounds of the FIFA World Cup tournaments since 2014. The database includes tables for teams, matches, and scores. Resources Readme: Contains project details and instructions.

Awesome Lists containing this project

README

          

# World Cup Database

This project is a **PostgreSQL database** that stores information about the final three rounds of the **FIFA World Cup** tournaments since **2014**. It includes data about teams, matches, and scores.

## How to Use
1. **Create the database** and **restore the structure** by running:
```sh
psql --username=freecodecamp --dbname=postgres -f worldcup.sql
```
2. **Insert data** into the database by executing:
```sh
./insert_data.sh
```
3. **Run queries** to retrieve insights from the database:
```sh
./queries.sh
```

## Completion Proof
Below are the images confirming the successful completion of this project:

![Completion Proof](Completion_Proof.png)
![Completed 2 of 5 certification projects](Completed_2.png)
---

This project was completed as part of the **freeCodeCamp Relational Database Certification**. 🚀