SQL client to interface with databases and other data sources inside the terminal. More information: https://github.com/theseus-rs/rsql.
rsql
rsql --url {{"postgresql://user:pass@localhost/mydb"}}
rsql --url {{"postgresql://user:pass@localhost/db?sslmode=require"}}
rsql --url {{"mysql://user:pass@localhost/db?charset=utf8mb4"}}
rsql --url {{"sqlite://database.db"}} -- "SELECT * FROM users LIMIT 10"
rsql --url {{"sqlite://db.sqlite"}} --format json
rsql --url {{"delimited://data.txt?separator=|&has_header=true"}}