https://github.com/jwworth/sql-workshop
Material for our SQL workshop at Code Platoon
https://github.com/jwworth/sql-workshop
databases postgresql
Last synced: 9 months ago
JSON representation
Material for our SQL workshop at Code Platoon
- Host: GitHub
- URL: https://github.com/jwworth/sql-workshop
- Owner: jwworth
- Created: 2018-09-14T19:36:23.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-07-17T13:04:40.000Z (almost 3 years ago)
- Last Synced: 2025-06-03T11:39:06.471Z (about 1 year ago)
- Topics: databases, postgresql
- Language: Ruby
- Homepage:
- Size: 3.13 MB
- Stars: 13
- Watchers: 2
- Forks: 203
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SQL Workshop
This is material for Jack and Jake's SQL workshop at [Code Platoon][cp].
To see how the day will progress, check out the [Agenda][agenda].
### Setup
Clone the repo (no need to fork):
```
$ git clone https://github.com/jwworth/sql-workshop
```
Install [PostgreSQL][pg]. This is really important; please try to have a
working PostgreSQL REPL ready before we begin!
One way to verify a working Postgres installation would be to create and
connect to a Postgres database.
```
$ createdb deleteme
$ psql deleteme
psql (15.3)
Type "help" for help.
deleteme=# exit
$ dropdb deleteme
```
We'll start with the Phone Book domain.
```
$ cd sql-workshop/phone_book
```
Open up `lesson.sql` in your text editor.
### Additional Resources
You can't beat the official [PostgreSQL docs][pg-docs]; they are about as good
as documentation gets. This [conventions page][pg-conventions] will help you
read them.
We're proud to have contributed [PG Casts][pgcasts]. This series of videos
covers in greater detail many of the commands we'll teach today.
### License
This project is released under the [MIT License][mit].
### Sponsors
We are grateful to the following sponsors, who continue to support this
partnership:
- [CCSalesPro][cc]
- [Dr. Treat][dr]
- [Framebridge][fb]
- [Hashrocket][hr]
[agenda]: agenda.md
[cc]: https://www.ccsalespro.com/
[cp]: https://www.codeplatoon.org/
[dr]: https://www.drtreat.com/
[fb]: https://www.framebridge.com/
[hr]: https://hashrocket.com/
[mit]: http://www.opensource.org/licenses/MIT
[pg-conventions]: https://www.postgresql.org/docs/current/notation.html
[pg-docs]: https://www.postgresql.org/docs/
[pg]: https://www.postgresql.org/
[pgcasts]: https://pgcasts.com/