Skip to content

Latest commit

 

History

History
56 lines (28 loc) · 1.37 KB

README.md

File metadata and controls

56 lines (28 loc) · 1.37 KB

sql-playground

📚 Learning and exploring SQL (Postgres in particular).


Standalone subprojects

This repository illustrates different concepts, patterns and examples via standalone subprojects. Each subproject is completely independent of the others and do not depend on the root project. This standalone subproject constraint forces the subprojects to be complete and maximizes the reader's chances of successfully running, understanding, and re-using the code.

The subprojects include:

arrays/

Showcasing the array SQL data type.

See the README in arrays/.

lag/

Showcasing the lag Postgres function which is a part of Postgres' windowing support.

See the README in lag/.

docker/

Run Postgres in a Docker container using Docker Compose.

See the README in docker/.

administration/

Exploring how to administrate Postgres via its many tools like pg_ctl.

See the README in administration/.

test-data/

Generate test data to aid in performance exploration and analysis.

See the README in test-data/.

Wish List

General clean-ups, TODOs and things I wish to implement for this project:

  • DONE Explore Postgres without Docker. I'd like to learn the basics of pg_ctl so I don't need to depend on Docker to run Postgres (although Docker is super convenient!)