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)
- Host: GitHub
- URL: https://github.com/davorpa/hab-m05
- Owner: davorpa
- License: agpl-3.0
- Created: 2020-11-20T18:11:21.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-05T08:58:39.000Z (over 3 years ago)
- Last Synced: 2025-03-05T03:16:55.443Z (over 1 year ago)
- Topics: 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
- Language: HTML
- Homepage:
- Size: 6.23 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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).