mirror of
https://github.com/sahinakkaya/til.git
synced 2025-04-19 17:22:07 +02:00
10 lines
121 B
Markdown
10 lines
121 B
Markdown
```bash
|
|
psql dbname username
|
|
|
|
# example
|
|
|
|
psql my_database my_user
|
|
|
|
psql postgresql://localhost:5432/dbname username
|
|
```
|