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

https://github.com/davorpa/hab-m05

Hack A Boss Bootcamp - Module 05 (SQL)
https://github.com/davorpa/hab-m05

bootcamp classroom database database-design database-diagram entity-relationship-diagram entity-relationship-diagrams exercises exercism hack-a-boss hackaboss mysql rdbms sql sql-dcl sql-ddl sql-dml sql-query

Last synced: 3 months ago
JSON representation

Hack A Boss Bootcamp - Module 05 (SQL)

Awesome Lists containing this project

README

          

# hab-m05. SQL

This project _(Module 05)_ holds the coding exercises 🧑‍💻 planed by teachers 🧑‍🏫 about topic _SQL_ during my [Hack A Boss bootcamp](https://hackaboss.dev/bootcamp-programacion-remoto).

Also some usefull notes taken during that remote classes happens.

We are hackers 🧑‍🎓🧑‍💻🧞, we are bossers 🕴️, we are remoters 🌐⛓️.

## Requirements

**MySQL** (https://www.mysql.com). Tanto el server como el workbench. Seguir [guía de instalación del profesor](teacher-docs/INSTALACION-MYSQL.md).

**DIA** (https://dia-installer.de). para hacer diagramación entidad-relación (EDRs) y modelado DDBB (Relational Schemas).

```bash
sudo apt update
sudo apt install dia
```

Otrás alternativas a DIA:
- Microsoft Visio (https://www.microsoft.com/microsoft-365/visio): es de pago.
- Enterprise Architect (https://sparxsystems.com): es de pago pero muy potente.
- ERDPlus (https://erdplus.com/): editor online específico para EDR.
- Draw-IO (https://www.diagrams.net): cliente online y de escritorio con un sinfin de posibilidades. Integración con repositorios.

## Initialization

Por la terminal ejecutamos en orden los siguientes comandos:

```bash
# Creamos la carpeta del módulo y nos metemos en ella
mkdir hab-mod05
cd hab-mod05

# Inicializamos su repositorio
git init

# Agregamos contenido
echo "# MODULE 05 - SQL" >> README.md
echo "" >> .gitignore

## Agregamos al repositorio
git add --all
git commit -m "🎉 Commit inicial. MODULE 05 - SQL"

```

## How to contribute

For information ℹ️ on adding any content, please see first the [CONTRIBUTING file](CONTRIBUTING.md).

## License

The content of this project itself and the underlying source code used to format and display that content is licensed under the [The GNU Affero General Public License Version 3](LICENSE).