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

https://github.com/StudyResearchProjects/pancakes-sql-training

🥞 Databases only training
https://github.com/StudyResearchProjects/pancakes-sql-training

docker mysql sql training w3schools

Last synced: 6 months ago
JSON representation

🥞 Databases only training

Awesome Lists containing this project

README

          

# pancakes-sql-training
🥞 Databases only training

> This is a collection of results from [w3schools](https://www.w3schools.com/sql/default.asp) SQL tutorial website. Every sample from the index comes from that tutorial, and this repository is intended to be used as reference of the queries showed in the website while reading the documentation.

## Requirements
[Docker](https://www.docker.com/)

## Setup Environment
Build Docker image:

```bash
docker build -t pancakes-sql-training .
```

Run Docker image `pancakes-sql-training`:

```bash
docker run -p 3306:3306 pancakes-sql-training:latest
```

## Index
- [SQL Select](https://github.com/estebanborai/pancakes-sql-training/tree/master/sql_select)
- [SQL Select Distinct](https://github.com/estebanborai/pancakes-sql-training/tree/master/sql_select_distinct)
- [SQL Select Where](https://github.com/estebanborai/pancakes-sql-training/tree/master/sql_select_where)
- [SQL And, Or, Not](https://github.com/estebanborai/pancakes-sql-training/tree/master/sql_and_or_not)
- [SQL Order By](https://github.com/estebanborai/pancakes-sql-training/tree/master/sql_order_by)
- [SQL Insert Into](https://github.com/estebanborai/pancakes-sql-training/tree/master/sql_insert_into)

## References
- [W3Schools](https://www.w3schools.com/sql/)
- [MySQL Doc](https://dev.mysql.com/doc/)