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
- Host: GitHub
- URL: https://github.com/StudyResearchProjects/pancakes-sql-training
- Owner: StudyResearchProjects
- Created: 2019-07-05T23:16:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-14T18:15:44.000Z (over 6 years ago)
- Last Synced: 2025-10-13T08:43:39.366Z (6 months ago)
- Topics: docker, mysql, sql, training, w3schools
- Language: TSQL
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)