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.
- Host: GitHub
- URL: https://github.com/ghonim0007/fcc-worldcup-database
- Owner: ghonim0007
- Created: 2025-03-27T23:28:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-28T00:04:08.000Z (over 1 year ago)
- Last Synced: 2025-03-28T00:27:00.850Z (over 1 year ago)
- Topics: bash, database, fcc, postgresql, shell-script, wordcup
- Language: Shell
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:


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