An open API service indexing awesome lists of open source software.

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

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
```