TIL: Connecting to a database

This commit is contained in:
Asocia 2021-07-07 17:36:13 +03:00
parent 3c6e00d217
commit 5a508f338b

View File

@ -0,0 +1,9 @@
```
psql dbname username
# example
psql my_database my_user
psql postgresql://localhost:5432/dbname username
```