https://github.com/brian3814/advent_of_sql_2024
Advent of SQL 2024 Challange
https://github.com/brian3814/advent_of_sql_2024
advent-of-sql postgresql
Last synced: 28 days ago
JSON representation
Advent of SQL 2024 Challange
- Host: GitHub
- URL: https://github.com/brian3814/advent_of_sql_2024
- Owner: brian3814
- Created: 2024-12-05T14:19:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-22T06:49:02.000Z (over 1 year ago)
- Last Synced: 2024-12-22T07:28:20.505Z (over 1 year ago)
- Topics: advent-of-sql, postgresql
- Homepage:
- Size: 4.98 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of SQL Challange
Calender: [https://adventofsql.com/](https://adventofsql.com/)
## Docker setup
```
docker pull postgres
docker run --name postgres -e POSTGRES_PASSWORD=mysecretpassword -d -p 5432:5432 postgres
```
## Connect to PostgreSQL
Use either psql or third-party tools such as DBeaver.
```
psql -h localhost -p 5432 -U postgres
```