https://github.com/symonk/learning-sql
simple cheat sheet for sql
https://github.com/symonk/learning-sql
Last synced: about 2 months ago
JSON representation
simple cheat sheet for sql
- Host: GitHub
- URL: https://github.com/symonk/learning-sql
- Owner: symonk
- License: apache-2.0
- Created: 2023-04-10T11:21:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-28T14:39:48.000Z (over 1 year ago)
- Last Synced: 2025-02-08T20:47:32.576Z (3 months ago)
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Sql Cheat Sheet
A collection of recipes used while learning `sql`. The repository houses a docker compose to bring up a `postgres` database
with sufficient table(s) for all contents in the repository. The resources are geared towards `postgres` but the bulk
majority will apply to all implementations of sql.The database and exercises are centered around tolkiens `LOTR`.
-----
## Database Setup
To have the database accessible:
* Have `docker` installed
* Have `docker-compose` installed
* Run `docker-compose up` in the root directory
* Modern versions of compose may be available under `docker compose up`-----
### Table of Contents:
* [Select](selects/)